+2 votes

I am trying to make a simple confirm box for my game.
I would like to change the button that says "ok" to say "Yes". is that possible?
If i use the add_button() it adds a third button instead.
(It wont let me upload a screenshot)

in Engine by (41 points)

1 Answer

+5 votes
Best answer

I assume you're talking about the ConfirmationDialog, as the PopupMenu-node does not even have buttons. If so, the answer is yes, but only from code:

extends ConfirmationDialog

func _ready():
    get_ok().text = "Yes"
    get_cancel().text = "No"
by (10,628 points)
selected by
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.