UnityEditor.PolygonEditor.INTERNAL_CALL_InsertPoint C# (CSharp) Méthode

INTERNAL_CALL_InsertPoint() private méthode

private INTERNAL_CALL_InsertPoint ( int pathIndex, int pointIndex, Vector2 &value ) : void
pathIndex int
pointIndex int
value Vector2
Résultat void
        private static extern void INTERNAL_CALL_InsertPoint(int pathIndex, int pointIndex, ref Vector2 value);
        [MethodImpl(MethodImplOptions.InternalCall), WrapperlessIcall]

Usage Example

 public static void InsertPoint(int pathIndex, int pointIndex, Vector2 value)
 {
     PolygonEditor.INTERNAL_CALL_InsertPoint(pathIndex, pointIndex, ref value);
 }