- Introduction to lua
- Basic Setup
- Estrela for Luxinia
- Scenegraphs
- Scene Setup
- Models/Meshes
- Input handling
- Basic physics
- Physics surface properties
- Vehicle physics
- Using models
- Picking
- A Simple UDP Server
- GUI for the UDP Server
- Tetris attack clone prototype
- Stencil Shadows
- Sprite animation with matobject
- Project archives
- Estrela for Cg
- Specular mapping shader
- Material and Matobject
Lua
This tutorial is an introduction to Lua for beginnersWeblinks:
- Lua Basic Tutorials
These documents describe the basic principles of the lua language - Programming in Lua
This document describes essential parts of lua that makes it so special.
What is Lua?
Lua is a scripting language that is used in Luxinia. When a lua script is loaded it is executed from start to end and any call you do is done immeaditly.Example:
print("this is my lua file")
Output:
this is my lua file
If you want to learn programming in lua, there are a few basic concepts (like above) that you need to learn.
