File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
Assets/FbxExporters/Editor Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,15 @@ public override void OnInspectorGUI() {
68
68
}
69
69
}
70
70
}
71
+ GUILayout . BeginHorizontal ( ) ;
72
+
73
+ GUILayout . Label ( new GUIContent (
74
+ "Turn Table Scene:" ,
75
+ "Scene to use for reviewing models. If none, a scene will be created on review." ) ) ;
76
+
77
+ exportSettings . turntableScene = EditorGUILayout . ObjectField (
78
+ exportSettings . turntableScene , typeof ( SceneAsset ) , false
79
+ ) ;
71
80
72
81
GUILayout . EndHorizontal ( ) ;
73
82
GUILayout . FlexibleSpace ( ) ;
@@ -92,6 +101,9 @@ public class ExportSettings : ScriptableSingleton<ExportSettings>
92
101
public bool mayaCompatibleNames ;
93
102
public bool centerObjects ;
94
103
104
+ [ SerializeField ]
105
+ public UnityEngine . Object turntableScene ;
106
+
95
107
/// <summary>
96
108
/// The path where Convert To Model will save the new fbx and prefab.
97
109
///
You can’t perform that action at this time.
0 commit comments