converting int to string in godot code example
Example: godot change int to string
# You Use int("234"), str(249), ...
func _ready():
var my_string = "123"
print(int(my_string) + 1)
# Prints Out 124
# You Use int("234"), str(249), ...
func _ready():
var my_string = "123"
print(int(my_string) + 1)
# Prints Out 124