From d7d130295ecf3f5c97b4db8d5813ea7ab17dc871 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Mikrut?= Date: Tue, 1 Nov 2022 20:49:52 +0100 Subject: Support for checking that Projection is(not) null --- .../tests/scripts/runtime/features/compare-builtin-not-equals-null.gd | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'modules/gdscript/tests/scripts/runtime/features/compare-builtin-not-equals-null.gd') diff --git a/modules/gdscript/tests/scripts/runtime/features/compare-builtin-not-equals-null.gd b/modules/gdscript/tests/scripts/runtime/features/compare-builtin-not-equals-null.gd index ee622bf22f..f46afb0f18 100644 --- a/modules/gdscript/tests/scripts/runtime/features/compare-builtin-not-equals-null.gd +++ b/modules/gdscript/tests/scripts/runtime/features/compare-builtin-not-equals-null.gd @@ -69,6 +69,10 @@ func test(): value = Transform3D() print(value != null) + # Projection + value = Projection() + print(value != null) + # Color value = Color() print(value != null) -- cgit v1.2.3