_instantiated
: bool |
Signature
bool _instantiated |
Instantiated
: bool
[Get] |
Whether the style object is instantiated or not (meaning the style is cloned as an instance).
Signature
bool Instantiated |
Default< T >
()
|
Load and returns the default style of the asset.
The default style is specified by the name of the asset (with "Default" suffix).
Signature
static T Default< T >() Returns T
The default style
|
Instantiate< T >
(
name
)
|
Instantiate the style object (cloning as instance) and set the instantiated state to true.
Signature
static T Instantiate< T >(string name) Parameters name: string
String representing the name of the asset
Returns T
The instantiated style of given name
|
Load< T >
(
name
)
|
Load the style with the specified name of the asset.
Signature
static T Load< T >(string name) Parameters name: string
String representing the name of the asset
Returns T
The loaded style of given name
|