mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-14 08:04:40 +00:00
Fixes vertex weight assignments.
Adds upaxis override option to match collada importer.
This commit is contained in:
parent
2d795b2493
commit
bc722a353d
4 changed files with 100 additions and 65 deletions
|
|
@ -40,6 +40,7 @@ class AssimpAppMesh : public AppMesh
|
|||
protected:
|
||||
class AssimpAppNode* appNode; ///< Pointer to the node that owns this mesh
|
||||
const struct aiMesh* mMeshData;
|
||||
bool mIsSkinMesh;
|
||||
|
||||
public:
|
||||
|
||||
|
|
@ -100,7 +101,7 @@ public:
|
|||
/// Return true if this mesh is a skin
|
||||
bool isSkin()
|
||||
{
|
||||
return false;
|
||||
return mIsSkinMesh;
|
||||
}
|
||||
|
||||
/// Generate the vertex, normal and triangle data for the mesh.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue