Пример #1
0
 /// <summary>Restores the draw color state to the previously pushed state from the stack</summary>
 [MethodImpl(INLINE)] public static void PopColor() => ColorStack.Pop();
Пример #2
0
 /// <summary>Restores the draw color state to the previously pushed state from the stack</summary>
 public static void PopColor() => ColorStack.Pop();
Пример #3
0
 /// <summary>Pushes the current draw color onto the matrix stack. Calling <see cref="Draw.PopColor()"/> will restore this state</summary>
 [MethodImpl(INLINE)] public static void PushColor() => ColorStack.Push(Draw.style.color);
Пример #4
0
 /// <summary>Pushes the current draw color onto the matrix stack. Calling <see cref="Draw.PopColor()"/> will restore this state</summary>
 public static void PushColor() => ColorStack.Push(Draw.style.color);