コード例 #1
0
ファイル: Exporter.cs プロジェクト: jcoder58/Plugins
 ///<summary>Export the given object to file.</summary>
 ///<remarks>
 ///Child classes do not override this, but they do provide an Export() function
 ///to do the resource-specific export work.
 ///
 ///@param        Task            The task to export.
 ///
 ///@return       true if the the object was successfully exported
 ///</remarks>
 public static bool RunAssetExportTask(AssetExportTask Task) =>
 Exporter_methods.RunAssetExportTask_method.Invoke(Task);
コード例 #2
0
ファイル: Exporter.cs プロジェクト: jcoder58/Plugins
 internal bool on_ScriptRunAssetExportTask(AssetExportTask Task, bool ReturnValue) =>
 ScriptRunAssetExportTask != null?ScriptRunAssetExportTask(Task, ReturnValue) : ReturnValue;