Version: 2022.3
언어: 한국어
public void SetPositions (Vector3[] positions);
public void SetPositions (NativeArray<Vector3> positions);
public void SetPositions (NativeSlice<Vector3> positions);

파라미터

positions The array of positions to set.

설명

Sets the positions of all vertices in the trail.

You can only use this method to modify existing positions in the Trail. You cannot use it to add new positions.

When setting all positions, use this method instead of SetPosition because it is more efficient to set all positions using a single command than to set each position individually.

See Also: positionCount property.

See Also: SetPosition function.