Skip to content

Commit abe609c

Browse files
committed
DAPI13
1 parent 8c1f474 commit abe609c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+2403
-433
lines changed

Ktisis/Configuration.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@
44
using System.Collections.Generic;
55
using System.IO;
66

7-
using ImGuizmoNET;
8-
97
using Dalamud;
108
using Dalamud.Configuration;
119
using Dalamud.Game;
1210
using Dalamud.Game.ClientState.Keys;
11+
using Dalamud.Bindings.ImGuizmo;
1312

1413
using Ktisis.Interface;
1514
using Ktisis.Localization;
@@ -118,8 +117,8 @@ public bool IsBoneCategoryVisible(Category category) {
118117

119118
// Gizmo
120119

121-
public MODE GizmoMode { get; set; } = MODE.LOCAL;
122-
public OPERATION GizmoOp { get; set; } = OPERATION.ROTATE;
120+
public ImGuizmoMode GizmoMode { get; set; } = ImGuizmoMode.Local;
121+
public ImGuizmoOperation GizmoOp { get; set; } = ImGuizmoOperation.Rotate;
123122

124123
public SiblingLink SiblingLink { get; set; } = SiblingLink.None;
125124

Ktisis/Data/Excel/Dye.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
using System.Numerics;
22

33
using Dalamud.Utility;
4-
5-
using ImGuiNET;
4+
using Dalamud.Bindings.ImGui;
65

76
using Ktisis.Structs.Extensions;
87

Ktisis/Data/Excel/EventNpc.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using Ktisis.Structs.Extensions;
77

88
namespace Ktisis.Data.Excel {
9-
[Sheet("ENpcBase", columnHash: 0x464052CD)]
9+
[Sheet("ENpcBase", columnHash: 0x5BA9E1A6)]
1010
public struct EventNpc : IExcelRow<EventNpc>, INpcBase {
1111
// Excel
1212

Ktisis/Data/Excel/NpcEquipment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using Ktisis.Structs.Extensions;
55

66
namespace Ktisis.Data.Excel {
7-
[Sheet("NpcEquip", columnHash: 0x4004F596)]
7+
[Sheet("NpcEquip", columnHash: 0x7EAEB95C)]
88
public struct NpcEquipment(uint row) : IExcelRow<NpcEquipment> {
99
public uint RowId => row;
1010

0 commit comments

Comments
 (0)