18.07.2015, 22:07
v0.2.3 Released
- Fixed stack leak when using call.
- Fixed call function: arguments starts at index 1 and not 3
- Fixed prescript when using "export" will not call function correctly if no argument passed.
- Accepted "export" calls:
Download
Plugin
Source code
- Fixed stack leak when using call.
- Fixed call function: arguments starts at index 1 and not 3
- Fixed prescript when using "export" will not call function correctly if no argument passed.
- Accepted "export" calls:
Код:
export['resourcename'].functionName([arguments ...]) export['resourcename']:functionName([arguments ...]) export['resourcename']['functionName']([arguments ...]) export.resourcename.functionName([arguments ...]) export.resourcename:functionName([arguments ...]) export.resourcename['functionName']([arguments ...]) local resource = export['resourcename'] resource.functionName([arguments ...]) resource:functionName([arguments ...]) resource['functionName']([arguments ...])
Plugin
Source code