Skip to content

Commit c311926

Browse files
committed
Update README
1 parent bee6d22 commit c311926

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,11 @@ lua.do_string("""
137137
- [X] Add support for getting global singletons from Lua
138138
- [X] Add support for getting classes from Lua
139139
- [ ] Add support for `res://` relative paths in `require`
140+
- [ ] Add support for `await`ing signals
140141
- [X] Submit to Asset Library
141-
- [ ] Lua ScriptLanguageExtension
142+
- [X] Lua ScriptLanguageExtension
143+
+ [ ] Add support for property hints / usage flags (including export)
144+
+ [ ] Add support for property getter / setter
142145
- [ ] Support for building with LuaJIT
143146
- [X] Automated unit tests
144147
- [X] Automated build and distribution

test/gdscript_tests/lua_files/test_class.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ TestClass.empty_array = property { type = Array }
55
TestClass.preinitialized_array = Array { 1, 2, 3 }
66

77
function TestClass:_init(...)
8-
self.init_values = Array{ ... }
8+
self.init_values = Array { ... }
99
end
1010

1111
function TestClass:send_signal(arg1, arg2)

0 commit comments

Comments
 (0)