Added the ASSIMP library

Added the files provided for the tutorial
Added the SplitMeshNode and SubMeshNode classes
This commit is contained in:
iDunnoDev
2022-03-18 21:26:31 +00:00
committed by iDunnoDev
parent 6bdfe4569f
commit 65255f1321
105 changed files with 19816 additions and 11 deletions

View File

@ -23,6 +23,8 @@ public:
virtual void Render() = 0;
virtual void Shutdown() = 0;
virtual void DoTestUpdate(float inputTest) { _testInt = inputTest; }
void SetWorldTransform(FXMMATRIX& worldTransformation) { XMStoreFloat4x4(&_worldTransformation, worldTransformation); }
// Although only required in the composite class, these are provided
@ -35,5 +37,6 @@ protected:
XMFLOAT4X4 _worldTransformation;
XMFLOAT4X4 _combinedWorldTransformation;
wstring _name;
float _testInt = 0.0f;
};