Class CreateFileEntry
File create entry.
Inheritance
System.Object
CreateFileEntry
Namespace: FlaxEditor.Content.Create
Assembly: FlaxEngine.CSharp.dll
Syntax
public abstract class CreateFileEntry : Object, IFileEntryAction
Constructors
CreateFileEntry(String, String)
Initializes a new instance of the CreateFileEntry class.
Declaration
protected CreateFileEntry(string outputType, string resultUrl)
Parameters
System.String
outputType
The output file type. |
System.String
resultUrl
The result file url. |
Properties
HasSettings
Gets a value indicating whether this entry has settings to modify.
Declaration
public virtual bool HasSettings { get; }
Property Value
System.Boolean
|
ResultUrl
Declaration
public string ResultUrl { get; }
Property Value
System.String
|
Settings
Gets or sets the settings object to modify.
Declaration
public virtual object Settings { get; }
Property Value
System.Object
|
SourceUrl
Declaration
public string SourceUrl { get; }
Property Value
System.String
|
Methods
Create()
Creates the result file.
Declaration
public abstract bool Create()
Returns
System.Boolean
True if failed, otherwise false. |
Execute()
Declaration
public bool Execute()
Returns
System.Boolean
|