コード例 #1
0
ファイル: GL.cs プロジェクト: msruzy/digimon-linkz-client
 public static void Clear(bool clearDepth, bool clearColor, Color backgroundColor)
 {
     GL.GLClear(clearDepth, clearColor, backgroundColor, 1f);
 }
コード例 #2
0
ファイル: GL.cs プロジェクト: msruzy/digimon-linkz-client
 public static void Clear(bool clearDepth, bool clearColor, Color backgroundColor, [DefaultValue("1.0f")] float depth)
 {
     GL.GLClear(clearDepth, clearColor, backgroundColor, depth);
 }