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/3d/soft_body_3d.cpp | |
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/3d/soft_body_3d.cpp')
-rw-r--r-- | scene/3d/soft_body_3d.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/soft_body_3d.cpp b/scene/3d/soft_body_3d.cpp index 9592fe5849..324131d400 100644 --- a/scene/3d/soft_body_3d.cpp +++ b/scene/3d/soft_body_3d.cpp @@ -81,7 +81,7 @@ void SoftBodyRenderingServerHandler::close() { } void SoftBodyRenderingServerHandler::commit_changes() { - RS::get_singleton()->mesh_surface_update_region(mesh, surface, 0, buffer); + RS::get_singleton()->mesh_surface_update_vertex_region(mesh, surface, 0, buffer); } void SoftBodyRenderingServerHandler::set_vertex(int p_vertex_id, const void *p_vector3) { |