diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2020-07-24 01:04:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-24 01:04:57 +0200 |
| commit | 3811fb919e2053ec47510b5e04649c8f818ebe12 (patch) | |
| tree | 034adb2bf6a3177dbc3fa36b19f0cbd2ef7f8750 /modules/gdscript/gdscript_function.h | |
| parent | 819ef12d68548c8b50c99d2ce62413bafaa00d9c (diff) | |
| parent | a0f54cb95e3a0250df8ed6e6a54720c487034d97 (diff) | |
| download | redot-engine-3811fb919e2053ec47510b5e04649c8f818ebe12.tar.gz | |
Merge pull request #40598 from vnen/gdscript-2.0
GDScript 2.0 (again)
Diffstat (limited to 'modules/gdscript/gdscript_function.h')
| -rw-r--r-- | modules/gdscript/gdscript_function.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/gdscript/gdscript_function.h b/modules/gdscript/gdscript_function.h index 583eab744a..771baf6a08 100644 --- a/modules/gdscript/gdscript_function.h +++ b/modules/gdscript/gdscript_function.h @@ -180,12 +180,12 @@ public: OPCODE_CONSTRUCT_DICTIONARY, OPCODE_CALL, OPCODE_CALL_RETURN, + OPCODE_CALL_ASYNC, OPCODE_CALL_BUILT_IN, OPCODE_CALL_SELF, OPCODE_CALL_SELF_BASE, - OPCODE_YIELD, - OPCODE_YIELD_SIGNAL, - OPCODE_YIELD_RESUME, + OPCODE_AWAIT, + OPCODE_AWAIT_RESUME, OPCODE_JUMP, OPCODE_JUMP_IF, OPCODE_JUMP_IF_NOT, |
