Class AddressableAssetGroupSchema
Contains data for AddressableAssetGroups.
Namespace: UnityEditor.AddressableAssets.Settings
Syntax
public class AddressableAssetGroupSchema : ScriptableObject
Properties
Group
Get the group that the schema belongs to.
Declaration
public AddressableAssetGroup Group { get; }
Property Value
Type | Description |
---|---|
AddressableAssetGroup |
Methods
OnGUI()
Used to display the GUI of the schema.
Declaration
public virtual void OnGUI()
OnSetGroup(AddressableAssetGroup)
Override this method to perform post creation initialization.
Declaration
protected virtual void OnSetGroup(AddressableAssetGroup group)
Parameters
Type | Name | Description |
---|---|---|
AddressableAssetGroup | group | The group that the schema is added to. |
SetDirty(Boolean)
Used to notify the addressables settings that data has been modified. This must be called by subclasses to ensure proper cache invalidation.
Declaration
protected void SetDirty(bool postEvent)
Parameters
Type | Name | Description |
---|---|---|
Boolean | postEvent | Determines if this method call will post an event to the internal addressables event system |
ShowAllProperties()
Used for drawing properties in the inspector.
Declaration
public virtual void ShowAllProperties()