diff options
author | Rafał Mikrut <mikrutrafal@protonmail.com> | 2022-11-01 20:49:52 +0100 |
---|---|---|
committer | Rafał Mikrut <mikrutrafal@protonmail.com> | 2022-11-01 20:49:52 +0100 |
commit | d7d130295ecf3f5c97b4db8d5813ea7ab17dc871 (patch) | |
tree | 3251498c16a662f92961db8a616bab00dc414287 /modules/gdscript/tests/scripts/runtime/features/compare-builtin-not-equals-null.gd | |
parent | f013315980ca13f4b66df29b5e32d3ecc310cb84 (diff) |
Support for checking that Projection is(not) null
Diffstat (limited to 'modules/gdscript/tests/scripts/runtime/features/compare-builtin-not-equals-null.gd')
-rw-r--r-- | modules/gdscript/tests/scripts/runtime/features/compare-builtin-not-equals-null.gd | 4 |
1 files changed, 4 insertions, 0 deletions
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) |