Merge pull request #108114 from lawnjelly/fti_multimesh_reset_all

`FTI` - Add `multimesh_instances_reset_physics_interpolation()`
This commit is contained in:
Thaddeus Crews 2025-10-24 11:23:15 -05:00
commit 822fd083c4
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
9 changed files with 36 additions and 0 deletions

View file

@ -2543,6 +2543,7 @@ void RenderingServer::_bind_methods() {
ClassDB::bind_method(D_METHOD("multimesh_set_physics_interpolated", "multimesh", "interpolated"), &RenderingServer::multimesh_set_physics_interpolated);
ClassDB::bind_method(D_METHOD("multimesh_set_physics_interpolation_quality", "multimesh", "quality"), &RenderingServer::multimesh_set_physics_interpolation_quality);
ClassDB::bind_method(D_METHOD("multimesh_instance_reset_physics_interpolation", "multimesh", "index"), &RenderingServer::multimesh_instance_reset_physics_interpolation);
ClassDB::bind_method(D_METHOD("multimesh_instances_reset_physics_interpolation", "multimesh"), &RenderingServer::multimesh_instances_reset_physics_interpolation);
BIND_ENUM_CONSTANT(MULTIMESH_TRANSFORM_2D);
BIND_ENUM_CONSTANT(MULTIMESH_TRANSFORM_3D);