Exemplo n.º 1
0
 public TransformAccessArray(int capacity, int desiredJobCount = -1)
 {
     TransformAccessArray.Allocate(capacity, desiredJobCount, out this);
 }
Exemplo n.º 2
0
 public TransformAccessArray(Transform[] transforms, int desiredJobCount = -1)
 {
     TransformAccessArray.Allocate(transforms.Length, desiredJobCount, out this);
     TransformAccessArray.SetTransforms(this.m_TransformArray, transforms);
 }