Support for checking that Projection is(not) null
This commit is contained in:
@@ -69,6 +69,10 @@ func test():
|
||||
value = Transform3D()
|
||||
print(value == null)
|
||||
|
||||
# Projection
|
||||
value = Projection()
|
||||
print(value == null)
|
||||
|
||||
# Color
|
||||
value = Color()
|
||||
print(value == null)
|
||||
|
||||
@@ -33,3 +33,4 @@ false
|
||||
false
|
||||
false
|
||||
false
|
||||
false
|
||||
|
||||
@@ -69,6 +69,10 @@ func test():
|
||||
value = Transform3D()
|
||||
print(value != null)
|
||||
|
||||
# Projection
|
||||
value = Projection()
|
||||
print(value != null)
|
||||
|
||||
# Color
|
||||
value = Color()
|
||||
print(value != null)
|
||||
|
||||
@@ -33,3 +33,4 @@ true
|
||||
true
|
||||
true
|
||||
true
|
||||
true
|
||||
|
||||
Reference in New Issue
Block a user