Welcome.
Gizmo64 is a plugin for the X-Plane flight simulator that lets you program in Lua Script.
With low level access to the simulator and a feature rich API out of the box Gizmo64 is the easiest way to create feature rich content for X-Plane.
Cross Platform Support for 64bit Windows and OSX. One API, Multiple Targets.
Download..
Beta Version:
https://benrussell.gumroad.com/l/gizmo64-lts Mac(Intel + Apple Silicon) and Windows
Linux support is not available at this time.
Install..
Download and extract Gizmo. Move Gizmo64.plugin to X-Plane/Resources/plugins/
Who's using Gizmo?
Hello World
Hello World:
ACF/scripts_src/init.lua
function OnDraw_Windows()
gfx.setColor(color.red)
gfx.drawString( "Hello World!", 512, 384 )
end