diff options
author | reduz <reduzio@gmail.com> | 2021-06-29 22:55:11 -0300 |
---|---|---|
committer | reduz <reduzio@gmail.com> | 2021-06-30 14:14:41 -0300 |
commit | 85cf99f28e93556f1298a5136254253f9da82b9a (patch) | |
tree | d38bc6dde1d41417149a8b37111abcba1e6dc4af /scene/animation/root_motion_view.h | |
parent | bcd1fc832fff5c1cc1efa4d2450b9e2919b972c9 (diff) | |
download | redot-engine-85cf99f28e93556f1298a5136254253f9da82b9a.tar.gz |
Deprecate ImmediateGeometry
* Removed entirely from RenderingServer.
* Replaced by ImmediateMesh resource.
* ImmediateMesh replaces ImmediateGeometry, but could use more optimization in the future.
* Sprite3D and AnimatedSprite3D work again, ported from Godot 3.x (though a lot of work was needed to adapt them to Godot 4).
* RootMotionView works again.
* Polygon3D editor works again.
Diffstat (limited to 'scene/animation/root_motion_view.h')
-rw-r--r-- | scene/animation/root_motion_view.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scene/animation/root_motion_view.h b/scene/animation/root_motion_view.h index 4cd3c7b443..55fd2d2b73 100644 --- a/scene/animation/root_motion_view.h +++ b/scene/animation/root_motion_view.h @@ -32,12 +32,12 @@ #define ROOT_MOTION_VIEW_H #include "scene/3d/visual_instance_3d.h" - +#include "scene/resources/immediate_mesh.h" class RootMotionView : public VisualInstance3D { GDCLASS(RootMotionView, VisualInstance3D); public: - RID immediate; + Ref<ImmediateMesh> immediate; NodePath path; float cell_size = 1.0; float radius = 10.0; @@ -46,6 +46,8 @@ public: bool first = true; bool zero_y = true; + Ref<Material> immediate_material; + Transform3D accumulated; private: |