1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-20 14:45:44 +00:00

Merge pull request #104269 from lawnjelly/fti_scene_tree4

Physics Interpolation - Move 3D FTI to `SceneTree`
This commit is contained in:
Thaddeus Crews
2025-04-28 10:01:34 -05:00
30 changed files with 1030 additions and 432 deletions

View File

@@ -2188,11 +2188,6 @@ void RuntimeNodeSelect::_update_selection() {
RS::get_singleton()->instance_set_transform(sb->instance_ofs, t_offset);
RS::get_singleton()->instance_set_transform(sb->instance_xray, t);
RS::get_singleton()->instance_set_transform(sb->instance_xray_ofs, t_offset);
RS::get_singleton()->instance_reset_physics_interpolation(sb->instance);
RS::get_singleton()->instance_reset_physics_interpolation(sb->instance_ofs);
RS::get_singleton()->instance_reset_physics_interpolation(sb->instance_xray);
RS::get_singleton()->instance_reset_physics_interpolation(sb->instance_xray_ofs);
}
#endif // _3D_DISABLED
}