0 votes

I want to pull some info out of an active plugin's vars. (almost like a global but for the editor)

in Engine by (546 points)

1 Answer

+1 vote
Best answer

You should be able to find it in the root\EditorNode

get_tree().get_root().get_node("EditorNode").get_children()

The types are EditorPlugins. If you don't know which it is, then it may be worth doing print statements in the plugin's ready code, or assigning it a name, and finding it by name.

Another alternative is inside the plugin code, you can assign a reference to it using self on any property of an object it deals with, or if there are globals that you are using.

by (5,276 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.