improved get_node(), connect(), etc code completion.
-properly completes text arguments -includes the "/root" autoloads
This commit is contained in:
parent
71cc2561c6
commit
a67486a39e
10 changed files with 211 additions and 26 deletions
|
|
@ -126,6 +126,19 @@ public:
|
|||
virtual ~ScriptInstance();
|
||||
};
|
||||
|
||||
class ScriptCodeCompletionCache {
|
||||
|
||||
static ScriptCodeCompletionCache *singleton;
|
||||
public:
|
||||
|
||||
virtual RES get_cached_resource(const String& p_path)=0;
|
||||
|
||||
static ScriptCodeCompletionCache* get_sigleton() { return singleton; }
|
||||
|
||||
ScriptCodeCompletionCache();
|
||||
|
||||
};
|
||||
|
||||
class ScriptLanguage {
|
||||
public:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue