diff options
Diffstat (limited to 'modules/gdscript/tests/scripts/runtime/features/compare-builtin-equals-null.gd')
-rw-r--r-- | modules/gdscript/tests/scripts/runtime/features/compare-builtin-equals-null.gd | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/runtime/features/compare-builtin-equals-null.gd b/modules/gdscript/tests/scripts/runtime/features/compare-builtin-equals-null.gd index c6645c2c34..809d0d28a9 100644 --- a/modules/gdscript/tests/scripts/runtime/features/compare-builtin-equals-null.gd +++ b/modules/gdscript/tests/scripts/runtime/features/compare-builtin-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) |