Support for checking that Projection is(not) null
This commit is contained in:
parent
f013315980
commit
d7d130295e
5 changed files with 14 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue