You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-16 14:00:40 +00:00
Correct null and boolean values being capitalised by the str command
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
func test():
|
||||
var null_var = null
|
||||
var true_var:bool = true
|
||||
var false_var:bool = false
|
||||
print(str(null_var))
|
||||
print(str(true_var))
|
||||
print(str(false_var))
|
||||
@@ -0,0 +1,4 @@
|
||||
GDTEST_OK
|
||||
null
|
||||
true
|
||||
false
|
||||
Reference in New Issue
Block a user