mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Enable autoload in editor
- Tool scripts will be executed and can be accessed by plugins. - Other script languages can implement add/remove_named_global_constant to make use of this functionality.
This commit is contained in:
parent
613a8bee41
commit
decf178033
10 changed files with 330 additions and 101 deletions
|
|
@ -50,6 +50,8 @@ class EditorAutoloadSettings : public VBoxContainer {
|
|||
|
||||
struct AutoLoadInfo {
|
||||
String name;
|
||||
String path;
|
||||
bool is_singleton;
|
||||
int order;
|
||||
|
||||
bool operator==(const AutoLoadInfo &p_info) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue