Interface IResourceProvider
Resoure Providers handle loading (Provide) and unloading (Release) of objects
Namespace: UnityEngine .ResourceManagement .ResourceProviders
Assembly: solution.dll
Syntax
public interface IResourceProvider
Properties
Name | Description |
---|---|
Behaviour |
Custom flags for the provider. |
Provider |
Unique identifier for this provider, used by Resource Locations to find a suitable Provider |
Methods
Name | Description |
---|---|
Can |
Determine if this provider can provide the specified object type from the specified location. |
Get |
The default type of object that this provider can provide. |
Provide(Provide |
Tells the provide that it needs to provide a resource and report the results through the passed provideHandle. When this is called, all dependencies have completed and are available through the provideHandle. |
Release(IResource |
Release and/or unload the given resource location and asset |