Trying things.

This commit is contained in:
Zoe Roux
2021-06-14 16:00:41 +02:00
parent 06a6eb2ed7
commit 9b385349dc
9 changed files with 57 additions and 24 deletions

View File

@@ -17,7 +17,7 @@ namespace RAY {
public:
//! @brief A Model animation constructor
//! @param animationPtr an animation pointer, returned by the nimation-loading function
ModelAnimation(::ModelAnimation &animationPtr);
ModelAnimation(::ModelAnimation *animationPtr);
//! @brief A default copy-constructor
ModelAnimation(const ModelAnimation &) = default;
@@ -41,7 +41,7 @@ namespace RAY {
~ModelAnimation() = default;
private:
::ModelAnimation &_animation;
::ModelAnimation *_animation;
size_t _frameCounter;
INTERNAL: