diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-12-10 10:02:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-10 10:02:38 +0100 |
commit | f455660e9384c5f423cced4e3c302f90aa7dba18 (patch) | |
tree | d04dbebb9c79f9709398dfa164545629f3c9e275 /modules/gltf/gltf_animation.h | |
parent | 7e32a27879ceb8622ca0351b896fe2ec304858f7 (diff) | |
parent | e9808e3d9a33c170d2b3863d8d24e630f9bda20f (diff) |
Merge pull request #55572 from aaronfranke/ci-double
Diffstat (limited to 'modules/gltf/gltf_animation.h')
-rw-r--r-- | modules/gltf/gltf_animation.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gltf/gltf_animation.h b/modules/gltf/gltf_animation.h index be0ed2d4c6..763494cb8d 100644 --- a/modules/gltf/gltf_animation.h +++ b/modules/gltf/gltf_animation.h @@ -50,7 +50,7 @@ public: template <class T> struct Channel { Interpolation interpolation; - Vector<float> times; + Vector<real_t> times; Vector<T> values; }; @@ -58,7 +58,7 @@ public: Channel<Vector3> position_track; Channel<Quaternion> rotation_track; Channel<Vector3> scale_track; - Vector<Channel<float>> weight_tracks; + Vector<Channel<real_t>> weight_tracks; }; public: |