9 lines
130 B
GDScript3
9 lines
130 B
GDScript3
|
func test():
|
||
|
# `and` should be used instead.
|
||
|
if true && true:
|
||
|
pass
|
||
|
|
||
|
# `or` should be used instead.
|
||
|
if false || true:
|
||
|
pass
|