示例#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
 public abstract void SetParameter(string name, CubeMapResource parameter, int index);