NeoBerlin Hi again, is there a code to change the scale of a texturebutton in script? i.e.: button_down() -> scale up button_up() -> scale down (back) Thank you Neo
rjoshua Yes, with the property rect_scale of textureButton: i.e.: extends Control func _on_text_button_pressed(): $text_button.rect_scale *= 2 #$text_button.rect_scale = Vector2(2, 2)
NeoBerlin Hi rjoshua, yes, i found this command, too...but i used it in the wrong way xD Thank you for the snipset :) Problem solved :) Nice day Neo