Gabriel Francisco
Gabriel Francisco
> It's better but not faster as it will not jit compile and outside or jit compiled mode, pairs is faster than ipairs Didn't know that, does it have a...
> One thing I don't like with this approach is that it will call `ents.GetAll()` whenever an entity is created, which could be hundreds of times on map/server load, map...
I have never tried to be honest. But the package is exported as UMD, so it should work well in deno with compat mode enabled.
Since version 1.25.0, it's much easier: ```js import wasmoon from 'npm:wasmoon' ``` https://deno.com/blog/v1.25
I added a way to set in the module, shared by the factory in https://github.com/ceifa/wasmoon/commit/675216a2c61b228e2e31b18e54cf8266a29063f2 Maybe it's not the best solution, but now you can share the node process environment...
5.4 currently
I managed to reproduce it here: https://jsfiddle.net/3sgqw8Lx/6/
Just tried it with another compiled file and it succeeds: ```sh echo 'print("Hello, world!")' | ./luac - && wasmoon luac.out Hello, world! ``` How are you compiling your file @jaames?
Indeed, and it should be under `injectObjects` flag
Hey, the build process it's very easy but I didn't write it anywhere yet. The main problem today is that you need to be on linux to build, I will...