summaryrefslogtreecommitdiffstats
path: root/tests/scene/test_node.h
diff options
context:
space:
mode:
authorMarkus Sauermann <6299227+Sauermann@users.noreply.github.com>2023-07-23 15:47:37 +0200
committerSpartan322 <Megacake1234@gmail.com>2024-10-23 14:31:33 -0400
commit00b909cb2864792acebe268ae0e21cdf8afb754e (patch)
tree80c652a5b7f619b0852b60fff2ad7bd5d5847ac7 /tests/scene/test_node.h
parentd81cd4edfe2408cdbb3d99ad81e4efb5a07c18bf (diff)
downloadredot-engine-00b909cb2864792acebe268ae0e21cdf8afb754e.tar.gz
Add an additional input stage after physics picking
Allow handling events, that were not used during physics picking. (cherry picked from commit d14035edccae40020226f3dced26969647e73a15)
Diffstat (limited to 'tests/scene/test_node.h')
-rw-r--r--tests/scene/test_node.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/scene/test_node.h b/tests/scene/test_node.h
index 25bea103b5..cc2c8cdcec 100644
--- a/tests/scene/test_node.h
+++ b/tests/scene/test_node.h
@@ -673,6 +673,18 @@ TEST_CASE("[Node] Processing checks") {
CHECK_FALSE(node->is_processing_unhandled_key_input());
}
+ SUBCASE("Unhandled picking input processing") {
+ CHECK_FALSE(node->is_processing_unhandled_picking_input());
+
+ node->set_process_unhandled_picking_input(true);
+
+ CHECK(node->is_processing_unhandled_picking_input());
+
+ node->set_process_unhandled_picking_input(false);
+
+ CHECK_FALSE(node->is_processing_unhandled_picking_input());
+ }
+
SUBCASE("Shortcut input processing") {
CHECK_FALSE(node->is_processing_shortcut_input());