You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EditorGUILayout.LabelField(newGUIContent("Include","Select whether to export models, animation or both."),GUILayout.Width(LabelWidth-FieldOffset));
32
+
// always greyed out, show only to let user know what will happen
33
+
EditorGUI.BeginDisabledGroup(true);
34
+
EditorGUILayout.Popup(0,includeOptions);
35
+
EditorGUI.EndDisabledGroup();
36
+
GUILayout.EndHorizontal();
37
+
38
+
GUILayout.BeginHorizontal();
39
+
EditorGUILayout.LabelField(newGUIContent("LOD level","Select which LOD to export."),GUILayout.Width(LabelWidth-FieldOffset));
40
+
// always greyed out, show only to let user know what will happen
41
+
EditorGUI.BeginDisabledGroup(true);
42
+
EditorGUILayout.Popup(0,lodOptions);
43
+
EditorGUI.EndDisabledGroup();
44
+
GUILayout.EndHorizontal();
45
+
46
+
GUILayout.BeginHorizontal();
47
+
EditorGUILayout.LabelField(newGUIContent("Object(s) Position","Select an option for exporting object's transform."),GUILayout.Width(LabelWidth-FieldOffset));
48
+
// always greyed out, show only to let user know what will happen
49
+
EditorGUI.BeginDisabledGroup(true);
50
+
EditorGUILayout.Popup(0,objPositionOptions);
51
+
EditorGUI.EndDisabledGroup();
52
+
GUILayout.EndHorizontal();
53
+
54
+
// TODO: add implementation for these options, grey out in the meantime
55
+
EditorGUI.BeginDisabledGroup(true);
56
+
GUILayout.BeginHorizontal();
57
+
EditorGUILayout.LabelField(newGUIContent("Transfer Root Motion To","Select bone to transfer root motion animation to."),GUILayout.Width(LabelWidth-FieldOffset));
0 commit comments