UnityEngine.RectOffset.INTERNAL_CALL_Add C# (CSharp) Method

INTERNAL_CALL_Add() private method

private INTERNAL_CALL_Add ( RectOffset self, Rect &rect, Rect &value ) : void
self RectOffset
rect Rect
value Rect
return void
        private static extern void INTERNAL_CALL_Add(RectOffset self, ref Rect rect, out Rect value);
        /// <summary>

Usage Example

コード例 #1
0
        public Rect Add(Rect rect)
        {
            Rect result;

            RectOffset.INTERNAL_CALL_Add(this, ref rect, out result);
            return(result);
        }
All Usage Examples Of UnityEngine.RectOffset::INTERNAL_CALL_Add