Jump to content

DevLog

  • entries
    5
  • comments
    0
  • views
    928

About this blog

tinyBigGAME Development Log

Entries in this blog

Robust LuaJIT integration in Topaz Game Toolkit!

Topaz has a robust LuaJIT integration feature. With just two interfaces, you can interface the Lua programming language to Delphi with relative ease. Bind Delphi to Lua:   type Color = class class procedure AutoSetup(aLua: ILua); class procedure Make(aContext: ILuaContext); class procedure Makef(aContext: ILuaContext); end; class procedure Color.AutoSetup(aLua: ILua); begin RegColor(aLua, 'WHITE', 255, 255, 255, 255); RegColor(aLua, 'RED', 255, 0, 0, 255);

Jarrod Davis

Jarrod Davis in programming

×
×
  • Create New...