You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-12-06 17:25:19 +00:00
This PR https://github.com/godotengine/godot/pull/104451 introduced a tricky regression. Canvas item transforms could risk not being updated for multiple frames due to the conditional on the line in this commit. Before the "approx_pos|size_changed" fix, the transform would get updated incidentally either way. But now there's a gap where (pos_changed && !size_changed) may not be true for a few frames and there's nothing else left to trigger a transform update. The fix is quite simple, for updating the canvas item transform we remain trigger happy around position changes, but respect the approx_size_changed.
146 KiB
146 KiB