Files
godot/scene
Samuel Rhodes 5a29f338f5 Fix error in debugger while changing scene on button clicked with touchscreen
When changing scenes via button click with a touchscreen, nodes can be removed
from the tree during input event processing. The ERR_FAIL_COND_V assertion in
can_process() would trigger an error when called on nodes already removed from
the tree. Changed to return false instead of asserting, which is the correct
behavior for nodes not in the tree.

Fixes #115376
2026-03-16 11:34:26 +01:00
..