예제 #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);