diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2021-08-09 17:15:17 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2021-08-09 17:43:48 -0500 |
commit | 430ad75963a0e6837ef460e78fb99565714b4418 (patch) | |
tree | d5b98ae003fd64fb76a77def411c6a51d97c48ee /scene/animation/root_motion_view.h | |
parent | c68b109f270a2bf1c42c3f083b53e7bc26dadfd6 (diff) | |
download | redot-engine-430ad75963a0e6837ef460e78fb99565714b4418.tar.gz |
Some work on double support
Diffstat (limited to 'scene/animation/root_motion_view.h')
-rw-r--r-- | scene/animation/root_motion_view.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/animation/root_motion_view.h b/scene/animation/root_motion_view.h index 55fd2d2b73..d64c8bc675 100644 --- a/scene/animation/root_motion_view.h +++ b/scene/animation/root_motion_view.h @@ -39,8 +39,8 @@ class RootMotionView : public VisualInstance3D { public: Ref<ImmediateMesh> immediate; NodePath path; - float cell_size = 1.0; - float radius = 10.0; + real_t cell_size = 1.0; + real_t radius = 10.0; bool use_in_game = false; Color color = Color(0.5, 0.5, 1.0); bool first = true; |