Interface IXRPackage
Implement this interface to provide package level information and actions.
XR Plug-in Management will reflect on all types in the project to find implementers of this interface. These instances are used to get information required to integrate your package with the XR Plug-in Management system.
Namespace: UnityEditor.XR.Management.Metadata
Syntax
public interface IXRPackage
Properties
metadata
Returns an instance of IXRPackageMetadata. Information will be used to allow the XR Plug-in Management to provide settings and loaders through the settings UI.
Declaration
IXRPackageMetadata metadata { get; }
Property Value
Type | Description |
---|---|
IXRPackageMetadata |
Methods
PopulateNewSettingsInstance(ScriptableObject)
Allows the package to configure new settings and/or port old settings to the instance passed in.
Declaration
bool PopulateNewSettingsInstance(ScriptableObject obj)
Parameters
Type | Name | Description |
---|---|---|
ScriptableObject | obj | ScriptableObject instance representing an instance of the settings type provided by settingsType. |
Returns
Type | Description |
---|---|
Boolean | True if the operation succeeded, false if not. If implementation is empty, just return true. |