extension-lua-preprocessor

Small and simple Lua preprocessor for Defold

MIT License

Stars
13

Bot releases are visible (Hide)

extension-lua-preprocessor - Handle empty files without errors Latest Release

Published by AGulev over 1 year ago

extension-lua-preprocessor - Plugin update

Published by britzl over 1 year ago

Including the new logging fix from 1.1.1

extension-lua-preprocessor - Logging fix

Published by britzl over 1 year ago

extension-lua-preprocessor - Throw error if syntax is wrong

Published by AGulev over 1 year ago

Make sure that plugin throws an exception and provide debug info to make sure developer doesn't miss some unexpected behavior because of typos.

extension-lua-preprocessor - Basic Lua preprocessor

Published by AGulev almost 2 years ago

This is the first release of the Lua preprocessor for Defold.
The following syntax supports:

-- Use one of the following keywords: RELEASE, DEBUG or HEADLESS
--#IF RELEASE
 my_lua.code_for_release()
--#ELSE
 my_lua.code_for_debug()
--#ENDIF