コード例 #1
0
ファイル: StateStack.cs プロジェクト: pencilking2002/BioTower
 internal static void Push(DrawStyle style, Matrix4x4 mtx)
 {
     StyleStack.Push(style);
     MatrixStack.Push(mtx);
 }
コード例 #2
0
 /// <summary><para>Resets draw style states, including color, but not the drawing matrix</para><para>See <see cref="Draw.ResetAllDrawStates()"/> to reset everything</para></summary>
 [MethodImpl(INLINE)] public static void ResetStyle() => style = DrawStyle.@default;
コード例 #3
0
ファイル: StateStack.cs プロジェクト: pencilking2002/BioTower
 internal StateStack(DrawStyle style, Matrix4x4 mtx) => Push(style, mtx);
コード例 #4
0
 /// <summary><para>Resets draw style states, including color, but not the drawing matrix</para><para>See <see cref="Draw.ResetAllDrawStates()"/> to reset everything</para></summary>
 public static void ResetStyle() => style = DrawStyle.@default;
コード例 #5
0
ファイル: StyleStack.cs プロジェクト: pencilking2002/BioTower
 internal StyleStack(DrawStyle style) => styles.Push(style);
コード例 #6
0
ファイル: StyleStack.cs プロジェクト: pencilking2002/BioTower
 internal static void Push(DrawStyle prevState) => styles.Push(prevState);
コード例 #7
0
ファイル: StyleStack.cs プロジェクト: the-pixelgrapher/Gubble
 internal StyleStack(DrawStyle mtx) => styles.Push(mtx);