UnityEditor.PolygonEditor.INTERNAL_CALL_InsertPoint C# (CSharp) Method

INTERNAL_CALL_InsertPoint() private method

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

Usage Example

示例#1
0
 public static void InsertPoint(int pathIndex, int pointIndex, Vector2 value)
 {
     PolygonEditor.INTERNAL_CALL_InsertPoint(pathIndex, pointIndex, ref value);
 }