diff options
author | Juan Linietsky <reduzio@gmail.com> | 2018-06-26 19:05:11 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2018-06-26 19:06:16 -0300 |
commit | c633b770cb648613ca88fc9e007718acfc219317 (patch) | |
tree | 2aa72d9bfc3276db0ea8a6b833d7fade724b3c16 /scene/animation/root_motion_view.h | |
parent | f036353b93269e1162437f188f6792f3953ac155 (diff) | |
download | redot-engine-c633b770cb648613ca88fc9e007718acfc219317.tar.gz |
-Add root motion support in AnimationTree.
-Add RootMotionView, to debug root motion in 3D (disabled in runtime)
Diffstat (limited to 'scene/animation/root_motion_view.h')
-rw-r--r-- | scene/animation/root_motion_view.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/scene/animation/root_motion_view.h b/scene/animation/root_motion_view.h new file mode 100644 index 0000000000..65e9ff480b --- /dev/null +++ b/scene/animation/root_motion_view.h @@ -0,0 +1,43 @@ +#ifndef ROOT_MOTION_VIEW_H +#define ROOT_MOTION_VIEW_H + +#include "scene/3d/visual_instance.h" + +class RootMotionView : public VisualInstance { + GDCLASS(RootMotionView, VisualInstance) +public: + RID immediate; + NodePath path; + float cell_size; + float radius; + bool use_in_game; + Color color; + bool first; + + Transform accumulated; + +private: + void _notification(int p_what); + static void _bind_methods(); + +public: + void set_animation_path(const NodePath &p_path); + NodePath get_animation_path() const; + + void set_color(const Color &p_path); + Color get_color() const; + + void set_cell_size(float p_size); + float get_cell_size() const; + + void set_radius(float p_radius); + float get_radius() const; + + virtual AABB get_aabb() const; + virtual PoolVector<Face3> get_faces(uint32_t p_usage_flags) const; + + RootMotionView(); + ~RootMotionView(); +}; + +#endif // ROOT_MOTION_VIEW_H |