diff options
| author | reduz | 2015-12-28 19:31:52 -0300 |
|---|---|---|
| committer | reduz | 2015-12-28 19:32:51 -0300 |
| commit | 30c12297dc6df7d35df140475c0cec7308aea77a (patch) | |
| tree | e09c1ed46a6d42bcaab5ff4f3a67749948ff6ff7 /modules/gdscript/gd_tokenizer.h | |
| parent | eecfeb1d7681bf9186bc231e9ee8c5d36f2afcea (diff) | |
| download | godot-30c12297dc6df7d35df140475c0cec7308aea77a.tar.gz godot-30c12297dc6df7d35df140475c0cec7308aea77a.tar.zst godot-30c12297dc6df7d35df140475c0cec7308aea77a.zip | |
- added 'onready' keyword to gdscript. Defers initialization of member variables until _ready() is run.
Diffstat (limited to '')
| -rw-r--r-- | modules/gdscript/gd_tokenizer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdscript/gd_tokenizer.h b/modules/gdscript/gd_tokenizer.h index d6bd63c5b..3c0107cea 100644 --- a/modules/gdscript/gd_tokenizer.h +++ b/modules/gdscript/gd_tokenizer.h @@ -95,6 +95,7 @@ public: TK_PR_FUNCTION, TK_PR_CLASS, TK_PR_EXTENDS, + TK_PR_ONREADY, TK_PR_TOOL, TK_PR_STATIC, TK_PR_EXPORT, |
