(SubMesh) Renamed GetSkinIndex to GetMaterialIndex
Former-commit-id: 7d28e3baa39342234495c9637e7e4886ffdc4b5a
This commit is contained in:
parent
626cebfffa
commit
5d9bf5ed7b
|
|
@ -28,9 +28,9 @@ class NAZARA_API NzSubMesh : public NzResource
|
||||||
virtual const NzAxisAlignedBox& GetAABB() const = 0;
|
virtual const NzAxisAlignedBox& GetAABB() const = 0;
|
||||||
virtual nzAnimationType GetAnimationType() const = 0;
|
virtual nzAnimationType GetAnimationType() const = 0;
|
||||||
virtual const NzIndexBuffer* GetIndexBuffer() const = 0;
|
virtual const NzIndexBuffer* GetIndexBuffer() const = 0;
|
||||||
|
unsigned int GetMaterialIndex() const;
|
||||||
const NzMesh* GetParent() const;
|
const NzMesh* GetParent() const;
|
||||||
nzPrimitiveType GetPrimitiveType() const;
|
nzPrimitiveType GetPrimitiveType() const;
|
||||||
unsigned int GetSkinIndex() const;
|
|
||||||
virtual const NzVertexBuffer* GetVertexBuffer() const = 0;
|
virtual const NzVertexBuffer* GetVertexBuffer() const = 0;
|
||||||
virtual unsigned int GetVertexCount() const;
|
virtual unsigned int GetVertexCount() const;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ nzPrimitiveType NzSubMesh::GetPrimitiveType() const
|
||||||
return m_primitiveType;
|
return m_primitiveType;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int NzSubMesh::GetSkinIndex() const
|
unsigned int NzSubMesh::GetMaterialIndex() const
|
||||||
{
|
{
|
||||||
return m_matIndex;
|
return m_matIndex;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue