Interface IResourceLocation
Contains enough information to load an asset (what/where/how/dependencies)
Namespace: ResourceManagement
Syntax
public interface IResourceLocation
Properties
dependencies
Gets the dependencies to other IResourceLocations
Declaration
IList<IResourceLocation> dependencies { get; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.IList<IResourceLocation> | The dependencies. |
id
Internal name used by the provider to load this location
Declaration
string id { get; }
Property Value
| Type | Description |
|---|---|
| System.String | The identifier. |
providerId
Matches the provider used to provide/load this location
Declaration
string providerId { get; }
Property Value
| Type | Description |
|---|---|
| System.String | The provider id. |