summaryrefslogtreecommitdiff
path: root/modules/gdscript/gd_function.h
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2017-01-04 17:37:45 -0300
committerJuan Linietsky <reduzio@gmail.com>2017-01-04 17:37:45 -0300
commit9e477babb3bf0ce5179395c2a5155a3f3cd36798 (patch)
tree5246a7c0bc09580f60ea17b694aacc9cd8da8731 /modules/gdscript/gd_function.h
parent76c2e8583e70e8c976a306e77a40e8e7226aa249 (diff)
-GDScript support for accessing properties directly
-Added code lookup and code completion support for properties too
Diffstat (limited to 'modules/gdscript/gd_function.h')
-rw-r--r--modules/gdscript/gd_function.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/gdscript/gd_function.h b/modules/gdscript/gd_function.h
index 976dbb7778..e5262e8ad7 100644
--- a/modules/gdscript/gd_function.h
+++ b/modules/gdscript/gd_function.h
@@ -23,6 +23,8 @@ public:
OPCODE_GET,
OPCODE_SET_NAMED,
OPCODE_GET_NAMED,
+ OPCODE_SET_MEMBER,
+ OPCODE_GET_MEMBER,
OPCODE_ASSIGN,
OPCODE_ASSIGN_TRUE,
OPCODE_ASSIGN_FALSE,