vin-spiegel / lua-game-engine

lua game engine demo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

lua-game-engine

Simple lua game engine using SFML.Net, MoonSharp

Preview

local monster = gameObject()
monster.start.add(function()
  -- load stuff ..
end)

monster.update.add(function(deltaTime)
  -- do something ..
end)
  • Support Lua5.4 modules

  • Easy grammer with lua

    local myPanel = panel(){
      width = 100,
      height = 100,
      color = color.red
    }

Document

comming soon

License

MIT by vin-spiegel

About

lua game engine demo


Languages

Language:C# 100.0%