示例#1
0
文件: Object.cs 项目: KoMaTo3/csgl
 public Object(string setName)
 {
     this.name     = setName;
     this.isValid  = true;
     this.scale    = Vector3.One;
     this.position = Vector3.Zero;
     this.rotation = Vector3.Zero;
     this._vbo     = new VertexBufferObject();
 }
示例#2
0
文件: Object.cs 项目: KoMaTo3/csgl
 public Object( string setName )
 {
     this.name = setName;
       this.isValid = true;
       this.scale = Vector3.One;
       this.position = Vector3.Zero;
       this.rotation = Vector3.Zero;
       this._vbo = new VertexBufferObject();
 }