diff options
author | George Marques <george@gmarqu.es> | 2018-05-01 11:06:23 -0300 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2018-05-01 11:44:08 -0300 |
commit | decf178033d4176b0955b8efa8a081f7bccd7ed1 (patch) | |
tree | b69138dfb949dde62a8adfc206cdd9f9d478e4d9 /core/script_language.h | |
parent | 613a8bee415381a8564d34092b479e1f159e8e60 (diff) | |
download | redot-engine-decf178033d4176b0955b8efa8a081f7bccd7ed1.tar.gz |
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.
Diffstat (limited to 'core/script_language.h')
-rw-r--r-- | core/script_language.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/script_language.h b/core/script_language.h index 0c1f99cea6..1cd27c07dc 100644 --- a/core/script_language.h +++ b/core/script_language.h @@ -236,6 +236,8 @@ public: virtual void auto_indent_code(String &p_code, int p_from_line, int p_to_line) const = 0; virtual void add_global_constant(const StringName &p_variable, const Variant &p_value) = 0; + virtual void add_named_global_constant(const StringName &p_name, const Variant &p_value) {} + virtual void remove_named_global_constant(const StringName &p_name) {} /* MULTITHREAD FUNCTIONS */ |