Hello !
I have an app which work on my desktop, but when I want to export it to android, my script never enter in the 'if' and stop the function...
Here is a little example of my problem :
extends Node
onready var button = get_node("gui/button")
onready var label = get_node("gui/label")
func _ready():
button.connect("pressed", self, "function", [button.get_name()])
func function(name):
if name.ends_with("ton"):
label.set_text(name) # Never executed
label.set_text('bar') # Never executed
Here is a simple project : https://ufile.io/87401
Should I report it ?