Tanoda
CUIMisc.cs
Go to the documentation of this file.
1
3
5{
6 [System.Serializable]
7 public struct Vector3_Array2D
8 {
9 [SerializeField]
10 public Vector3[] array;
11
12 public Vector3 this[int _idx]
13 {
14 get
15 {
16 return array[_idx];
17 }
18 set
19 {
20 array[_idx] = value;
21 }
22 }
23 }
24}
Credit Erdener Gonenc - @PixelEnvision.