0 votes

Hi I have a theme.tres file and in this theme I customized the buttons background color
For example I want to change button hover background color in theme.tres and I want to
do it with gdscript. How I can do this?

self.theme.set_color("Button","normal",Color(1,1,1,1))

This code is not working but its not giving error also.

Godot version 3.4.4
in Engine by (30 points)

1 Answer

0 votes

This example will set the color to firebrick red. Don't forget to replace $StartButton with the name of your button

var styleBox = $StartButton.get("customstyles/normal/bgcolor")
styleBox.bg_color = Color.firebrick

by (14 points)
Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.