-
So due to the amount of tests and performance tracking both me and @koosemose have performed its insanely clear that any performance drops is due to high GC on moon sharp's part, they just need to all…
-
I know this might be a long shot, but polyglot notebooks are really useful, and I use lua for game programming, so it would be a match made in heaven to be able to use lua as a language in the noteboo…
-
https://groups.google.com/forum/#!topic/moonsharp/bAvsKil6LX0
-
Environment(环境)
--------------
name | version
----------|----------
IDEA version | #IU-193.5662.53
EmmyLua version | 1.3.1.136-IDEA182
OS | Ubuntu 18.0…
-
**Describe the bug**
Attempting to use [*multiple assignment*](https://www.lua.org/manual/5.3/manual.html#3.3.3) on a table with a [`__newindex`](https://www.lua.org/pil/13.4.2.html) metamethod, only…
-
Hi, I was wondering how I can add delay to my script, like "wait(2s)" or "sleep(2s)" before continue to execute the next line in my moonSharp Lua script.
-
lua code
`for k,v in pairs{1} do
local my;
return my;
end`
Expected result:
my == nil
Actual result
my is a table
(I am using MoonSharp for Unity)
-
e.DecoratedMessage gives me a file and line number but its often hard to tell where that code is being called from.
From the lua side, debug.traceback() doesn't work because debug isn't provided in m…
-
tonumber("0x23") will return nil but it should returm 35.
-
https://www.lua.org/manual/5.2/manual.html#pdf-string.format
As docs in version 5.2 says, %s should convert values to string, including nil values.