コード例 #1
0
ファイル: SkyBox.cs プロジェクト: shff/gk3tools
 public SkyBox(string name, BitmapSurface front, BitmapSurface back, BitmapSurface left, BitmapSurface right,
               BitmapSurface up, BitmapSurface down, float azimuth)
 {
     _cubeMap = Graphics.RendererManager.CurrentRenderer.CreateCubeMap(name, front, back, left, right, up, down);
     _azimuth = azimuth;
 }
コード例 #2
0
ファイル: IRenderer.cs プロジェクト: shff/gk3tools
 public abstract void SetParameter(string name, CubeMapResource parameter, int index);