The Godot Q&A is currently undergoing maintenance!

Your ability to ask and answer questions is temporarily disabled. You can browse existing threads in read-only mode.

We are working on bringing this community platform back to its full functionality, stay tuned for updates.

godotengine.org | Twitter

+1 vote

I want all the variables in one script to be used in other scripts. How should I do it?

in Engine by (43 points)

1 Answer

+8 votes
Best answer

The easiest way is to create a singleton script. The items in that script can be directly accessed from other scripts.

  • Create the script with the "global" variables
  • Save it (for example, assume it's called Globals.gd)
  • Project | Project Settings | AutoLoad (tab)
  • Add the script to the list (ensure Singleton is checked)

Now, to access anything in it (say a playerSpeed variable), just preface the reference with the script name. For example:

var mySpeed = Globals.playerSpeed

Also, note you can have multiple singleton scripts if you want.

by (22,674 points)
selected by

You can also add functions and use the _ready() function of the Singleton.

How can I make such a command with an image or a number.

Not quite sure what you’re asking.

But you can use the Global variables from anywhere in your code and set the values to what you want.

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.