Class BakeMapList
Compatibility layer for the old BakeMapList class. This class is provided to prevent breaking changes in AT Toolkit API, but should not be used.
Inherited Members
Namespace: UnityEngine.Pixyz.Algo
Assembly: Unity.Pixyz.UnitySDK.Editor.dll
Syntax
[Obsolete]
public class BakeMapList
Constructors
BakeMapList(int)
Constructor
Declaration
public BakeMapList(int size)
Parameters
| Type | Name | Description |
|---|---|---|
| int | size | Size of the BakeMap list. |
BakeMapList(BakeMap[])
Constructor
Declaration
public BakeMapList(BakeMap[] tab)
Parameters
| Type | Name | Description |
|---|---|---|
| BakeMap[] | tab | BakeMap list. |
Fields
list
lisf of BakeMaps.
Declaration
public BakeMap[] list
Field Value
| Type | Description |
|---|---|
| BakeMap[] |
Properties
this[int]
Access and set a specific index of the BakeMap list.
Declaration
public BakeMap this[int index] { get; set; }
Parameters
| Type | Name | Description |
|---|---|---|
| int | index | index |
Property Value
| Type | Description |
|---|---|
| BakeMap |
length
Number of BakeMaps in the list.
Declaration
public int length { get; }
Property Value
| Type | Description |
|---|---|
| int |
Operators
implicit operator BakeMap[](BakeMapList)
Returns BakeMaps list
Declaration
public static implicit operator BakeMap[](BakeMapList o)
Parameters
| Type | Name | Description |
|---|---|---|
| BakeMapList | o | other |
Returns
| Type | Description |
|---|---|
| BakeMap[] | Returns BakeMaps list |