lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


>Nope compiled on the very same machine.
>The game when it starts checks if bytecode exists/is out of date and compile if needed.

Lua scripts compile *very fast*, if you're doing the checks every time the game starts there's a chance it could be slower than always compiling the sources. During the game's development stage I'd suggest you always compile and cache the scripts in memory once at startup.

+Thiago