summaryrefslogtreecommitdiff
path: root/modules/gltf/gltf_animation.h
diff options
context:
space:
mode:
Diffstat (limited to 'modules/gltf/gltf_animation.h')
-rw-r--r--modules/gltf/gltf_animation.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gltf/gltf_animation.h b/modules/gltf/gltf_animation.h
index ba8ae8a273..8688ddb937 100644
--- a/modules/gltf/gltf_animation.h
+++ b/modules/gltf/gltf_animation.h
@@ -64,11 +64,11 @@ public:
public:
bool get_loop() const;
void set_loop(bool p_val);
- Map<int, GLTFAnimation::Track> &get_tracks();
+ HashMap<int, GLTFAnimation::Track> &get_tracks();
GLTFAnimation();
private:
bool loop = false;
- Map<int, Track> tracks;
+ HashMap<int, Track> tracks;
};
#endif // GLTF_ANIMATION_H