A powerful lighting engine for use with GameMaker: Studio. It makes use of surfaces and shaders to give you a simple to use yet optimal solution to your problems in need of lighting up!
These scripts are currently untested and unprepared for GameMaker Studio 2. You may import them into your project and use but they may not work. We are working on it though!
- GameMaker: Studio 1
- The required scripts and shaders added to your project
- Light objects
- A view
You should make use of a game control object to register settings and such for the framework.
- Initialise the system in the create event with
pl_init()
- Process the system in the step/begin step event with
pl_update()
- Render the lights in the draw end event with
pl_draw()
- Clear the system in the room end/game end event with
pl_end()
Initialise a light in the create event of a light object with pl_light_init()
. Make sure that the light object you specify has been registered via pl_add()
.
Tip: Make use of a parent light object to prevent you from having to register every single light object.
You can customise certain aspects of the framework with the following methods:
Set the ambience colour and brightness.
Set the blurring amount and transparency.
Set whether blurring should be active.
Set whether vivid lighting should be active.
You can customise each individual light with the following methods:
Initialise a new light.
Destroy the current light.
Get the transparency of the light.
Get the colour of the light.
Get the radius of the light.
Set the transparency of the light.
Set the colour of the light.
Set the radius of the light.
- Nik Sudan - Scripts and project maintenance
- FatalSleep - Scripts
- xygthop3 - Shaders