Skip to content

Commit 2d0319d

Browse files
committed
Update REE-Lib: Fixed mot version on copy, retarget UI tweak
1 parent a295b9b commit 2d0319d

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

ContentEditor.App/Imgui/Dialogs/MotFileActionHandler.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,6 @@ public bool Show()
163163
ImGui.Spacing();
164164
ImGui.Spacing();
165165
ImGui.Spacing();
166-
if (ImguiHelpers.ValueCombo("Armature Type", MapTypes, MapTypes, ref selectedArmatureType)) {
167-
lastSelectedType = selectedArmatureType;
168-
}
169166

170167
ImGui.SeparatorText("Additional options");
171168
ImGui.Checkbox("Only paste already existing channels", ref maintainExistingChannelsOnly);
@@ -181,6 +178,11 @@ public bool Show()
181178
}
182179
}
183180

181+
ImGui.SeparatorText("Skeleton adjustments");
182+
if (ImguiHelpers.ValueCombo("Armature Type", MapTypes, MapTypes, ref selectedArmatureType)) {
183+
lastSelectedType = selectedArmatureType;
184+
}
185+
184186
if (!string.IsNullOrEmpty(selectedArmatureType) && configs.TryGetValue(selectedArmatureType, out var config)) {
185187
var renameSourceGames = config.Renames.SelectMany(r => r.Version1).Concat(config.Renames.SelectMany(r => r.Version2)).Distinct().ToArray();
186188
if (renameSourceGames.Length == 0) {

RE-Engine-Lib

0 commit comments

Comments
 (0)