Interface IAttributeSettings
Attribute settings.
Namespace: Unity.PlatformToolkit.Editor
Assembly: Unity.PlatformToolkit.Editor.dll
Syntax
public interface IAttributeSettings
Properties
AttributeDefinitions
List of attribute definitions supported by the Platform Toolkit implementation.
Declaration
IReadOnlyList<IAttributeDefinition> AttributeDefinitions { get; }
Property Value
| Type | Description |
|---|---|
| IReadOnlyList<IAttributeDefinition> |
Attributes
List of attributes.
Declaration
IReadOnlyList<IAttribute> Attributes { get; }
Property Value
| Type | Description |
|---|---|
| IReadOnlyList<IAttribute> |
Methods
Add()
Add a new attribute to Attributes.
Declaration
IAttribute Add()
Returns
| Type | Description |
|---|---|
| IAttribute | New attribute. |
RemoveAt(int)
Remove an attribute from Attributes.
Declaration
void RemoveAt(int index)
Parameters
| Type | Name | Description |
|---|---|---|
| int | index | Index in Attributes list. |