一些无用的代码增加

This commit is contained in:
2025-06-23 02:37:03 +08:00
parent 368056bb96
commit c69fe080dc
10 changed files with 55 additions and 14 deletions

View File

@@ -62,7 +62,8 @@ public:
};
/**
* 网格体(网格中的最小渲染单位)
* 网格体(网格渲染中的最小渲染单位,只能是一个材质实例)
* 多材质的网格体使用StaticMesh它内含多个Mesh
*/
class Mesh
{
@@ -98,8 +99,8 @@ public:
Primitive * GetPrimitive (){return primitive;}
const AABB & GetBoundingBox ()const{return primitive->GetBoundingBox();}
const MeshDataBuffer * GetDataBuffer ()const{return data_buffer;}
const MeshRenderData * GetRenderData ()const{return render_data;}
const MeshDataBuffer * GetDataBuffer ()const{return data_buffer;}
const MeshRenderData * GetRenderData ()const{return render_data;}
public: