1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-30 16:26:50 +00:00

Merge pull request #80176 from lawnjelly/fti_2d_particles

[3.x] Physics Interpolation - add support for CPUParticles2D
This commit is contained in:
Rémi Verschelde
2023-08-08 14:27:38 +02:00
11 changed files with 371 additions and 179 deletions

View File

@@ -1006,6 +1006,7 @@ public:
bool light_masked : 1;
bool on_interpolate_transform_list : 1;
bool interpolated : 1;
bool ignore_parent_xform : 1;
mutable bool custom_rect : 1;
mutable bool rect_dirty : 1;
mutable bool bound_dirty : 1;
@@ -1261,6 +1262,7 @@ public:
update_when_visible = false;
on_interpolate_transform_list = false;
interpolated = true;
ignore_parent_xform = false;
local_bound_last_update_tick = 0;
}
virtual ~Item() {