mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Merge pull request #103685 from lawnjelly/fti_scene_tree
[3.x] Physics Interpolation - Move 3D FTI to `SceneTree`
This commit is contained in:
commit
5155fe5a4f
25 changed files with 599 additions and 424 deletions
|
@ -105,6 +105,15 @@ public:
|
|||
}
|
||||
}
|
||||
|
||||
bool erase_unordered(const T &p_val) {
|
||||
int64_t idx = find(p_val);
|
||||
if (idx >= 0) {
|
||||
remove_unordered(idx);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
U erase_multiple_unordered(const T &p_val) {
|
||||
U from = 0;
|
||||
U count = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue