Class YamlExporterBase
Inheritance
System.Object
YamlExporterBase
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: AssetRipper.Export.UnityProjects.dll
Syntax
public abstract class YamlExporterBase : IAssetExporter
Methods
|
Improve this Doc
View Source
Export(IExportContainer, IUnityObjectBase, String, FileSystem)
Declaration
public bool Export(IExportContainer container, IUnityObjectBase asset, string path, FileSystem fileSystem)
Parameters
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Export(IExportContainer, IUnityObjectBase, String, FileSystem, Nullable<Action<IExportContainer, IUnityObjectBase, String, FileSystem>>)
Declaration
public void Export(IExportContainer container, IUnityObjectBase asset, string path, FileSystem fileSystem, Action<IExportContainer, IUnityObjectBase, string, FileSystem>? callback)
Parameters
|
Improve this Doc
View Source
Export(IExportContainer, IEnumerable<IUnityObjectBase>, String, FileSystem)
Declaration
public bool Export(IExportContainer container, IEnumerable<IUnityObjectBase> assets, string path, FileSystem fileSystem)
Parameters
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Export(IExportContainer, IEnumerable<IUnityObjectBase>, String, FileSystem, Nullable<Action<IExportContainer, IUnityObjectBase, String, FileSystem>>)
Declaration
public void Export(IExportContainer container, IEnumerable<IUnityObjectBase> assets, string path, FileSystem fileSystem, Action<IExportContainer, IUnityObjectBase, string, FileSystem>? callback)
Parameters
|
Improve this Doc
View Source
ToExportType(IUnityObjectBase)
Declaration
public AssetType ToExportType(IUnityObjectBase asset)
Parameters
Returns
Type |
Description |
AssetType |
|
|
Improve this Doc
View Source
ToUnknownExportType(Type, out AssetType)
Declaration
public bool ToUnknownExportType(Type type, out AssetType assetType)
Parameters
Type |
Name |
Description |
Type |
type |
|
AssetType |
assetType |
|
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
TryCreateCollection(IUnityObjectBase, out IExportCollection)
Declaration
public abstract bool TryCreateCollection(IUnityObjectBase asset, out IExportCollection exportCollection)
Parameters
Returns
Type |
Description |
System.Boolean |
|
Implements