diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-02 14:17:29 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-02 14:17:29 +0100 |
commit | b3c2db954fc30a01bd6e85972a0514db269d66f9 (patch) | |
tree | 07efc105f99c3feb149e481554edfa0fc3be8d4d /modules/gdscript/tests/scripts/runtime/features/compare-builtin-not-equals-null.gd | |
parent | a8850434c20cb6c1da3fc87c588d1715ddf01620 (diff) | |
parent | d7d130295ecf3f5c97b4db8d5813ea7ab17dc871 (diff) |
Merge pull request #68136 from qarmin/projection_not_equal
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) |