Interface IDataBuilderResult
The result of IDataBuilder.Build.
Namespace: UnityEditor.AddressableAssets.Build
Syntax
public interface IDataBuilderResult
Properties
Duration
Duration of the build in seconds.
Declaration
double Duration { get; set; }
Property Value
Type | Description |
---|---|
Double |
Error
Error string, if any. If Succeeded is true, this may be null.
Declaration
string Error { get; set; }
Property Value
Type | Description |
---|---|
String |
FileRegistry
Registry of files created during the build
Declaration
FileRegistry FileRegistry { get; set; }
Property Value
Type | Description |
---|---|
FileRegistry |
LocationCount
The number of addressable assets contained in the build.
Declaration
int LocationCount { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
OutputPath
Path of runtime settings file
Declaration
string OutputPath { get; set; }
Property Value
Type | Description |
---|---|
String |