@@ -94,19 +94,19 @@ public static bool ExportMaterial(ModelExporter instance, Material unityMaterial
94
94
95
95
public static string ExportObjects ( string filePath ,
96
96
UnityEngine . Object [ ] objects = null ,
97
- EditorTools . IExportOptions exportOptions = null ,
97
+ IExportOptions exportOptions = null ,
98
98
Dictionary < GameObject , IExportData > exportData = null )
99
99
{
100
100
return ( string ) InvokeMethodOverload ( "ExportObjects" ,
101
101
new object [ ] { filePath , objects , exportOptions , exportData } ,
102
- new Type [ ] { typeof ( string ) , typeof ( UnityEngine . Object [ ] ) , typeof ( EditorTools . IExportOptions ) , typeof ( Dictionary < GameObject , IExportData > ) } ) ;
102
+ new Type [ ] { typeof ( string ) , typeof ( UnityEngine . Object [ ] ) , typeof ( IExportOptions ) , typeof ( Dictionary < GameObject , IExportData > ) } ) ;
103
103
}
104
104
105
- public static IExportData GetExportData ( GameObject rootObject , AnimationClip animationClip , EditorTools . IExportOptions exportOptions = null )
105
+ public static IExportData GetExportData ( GameObject rootObject , AnimationClip animationClip , IExportOptions exportOptions = null )
106
106
{
107
107
return ( IExportData ) InvokeMethodOverload ( "GetExportData" ,
108
108
new object [ ] { rootObject , animationClip , exportOptions } ,
109
- new Type [ ] { typeof ( GameObject ) , typeof ( AnimationClip ) , typeof ( EditorTools . IExportOptions ) } ) ;
109
+ new Type [ ] { typeof ( GameObject ) , typeof ( AnimationClip ) , typeof ( IExportOptions ) } ) ;
110
110
}
111
111
112
112
// Redefinition of the internal delegate. There might be a way to re-use the one in ModelExporter
0 commit comments