Skip to content

Dragosha/defold-light-and-shadows

Repository files navigation

Light and Shadows. Pack of shaders and scene setup examples.

Required Defold 1.10.0 version. Also, to run with other versions of the editor, you must update the Spine extension dependency to the correct version. https://github.com/defold/extension-spine/archive/refs/tags/3.7.0.zip Spine is used in examples only, and can be excluded from the library without any effect.

What is this?

A pack of materials and shaders to make a game with realtime shadow from one source (the sun) and a lot of point light sources. The main difference from previous examples (see on the Defold forum) is the projection of the shadow map to the center of the screen (cast shadows follow the camera). So you can create a game world of any size. And the sprites/spine models get shadows from other objects as well as 3D models.

title

Html5 demo

  • Press and hold left mouse button to move the camera.
  • Click on coins to collect them.
  • Works on mobile as well.

Setup

Render

The demo project is fully configured, if you want to configure your project from scratch see this section.

Set the render file in bootstrap section of the game.project. Of course, you can use your own render script. Just add some elements to it. Add shadow material to the list of materials available from render script, and shadowmap.render_target. See light_and_shadows/render/default.render as the reference.

render

Add to render_script a few special lines of code. Its marked as -- L_S Injection in the reference render script.


173 local light_and_shadows = require "light_and_shadows.light_and_shadows"
...
init() method:
178 add example and shadow predicates
198 add light_and_shadows.init(self)
..
update() method:
213 add light_and_shadows.update(self)
227 draw_options_world.constants = self.constants
231 upscale injection
242 render.enable_texture("tex1"...
267 render.disable_texture("tex1")
277 upscale ...

Add shadow to predicates list. See light_and_shadows/render/default.render_script as the reference.

Tune shadow settings in the light_and_shadows.lua file.

You may create the shadowmap render target as code or as resource file (See /light_and_shadows/render/shadowmap.render_target) Most important is:

  • BUFFER_RESOLUTION = 2048 - Size of the shadow map texture. Select value from: 1024/2048/4096. More is better quality. Shadow map texture is projected to the game world.

  • PROJECTION_RESOLUTION = 400 - This constant indicates the size of the area on which the shadow is projected around the screen center. Smaller size is better shadow quality. This value also depends on camera zoom / world scale. Feel free to adjust it.

Materials

  • Model - material to setup the 3D models.

model_world uses world vertex space. If you use 3D models with this material and the same texture, such objects will be assembled in batching. But this required more CPU time. Also this material can used for animated models.

model_local uses local vertex space. Less CPU load, but each individual model will require its own drawcall.

model_instanced uses local vertex space and 'mtx_world' and 'mtx_normal' are specified as attributes. This type is best suited for identical models duplicated in large numbers on a scene. Such as trees, walls, grass, etc. The geometry of such a model will be passed to the GPU once.

  • Mesh - material to install on the mesh component. Very similar to the material for models, but also uses the vertex color value in calculating the pixel totals.

  • Sprite

light_sprite - material to install on the sprite component. Since the sprite has no normals, we set the normal in the material as an user vector4 constant. Note, the direction of the normal can and should be changed depending on what angle you set the sprites in your scene. In the example all sprites are tilted at the same X angle as the camera (-26.6), this is done to minimize distortion when drawing a scene with perspective, so that the sprites "look" exactly at the camera.

light_sprite_back - uses the same shaders as light_sprite, but the normal in the material looks "up". Used for decals on the ground, for the floor, etc. Also drawn in its predicate, before the other sprites.

  • Spine - material to install on the spine component. Uses the same shaders as light_sprite, differs from sprite only by using a different view matrix.

  • Fog - fog_sprite, fog_particle, fog_label are used on appropriate components when we do not need to calculate light and shadows. But the component must fade in the distance and calculate fog. For example, it is used for partials of fire, or the effect of glow from a window. Which is done simply by a sprite with a blending like ADD installed. Explore the example scene to understand better.

  • Hidden - materials for auxiliary objects that are not involved in the rendering, but should be visible in the editor window. For example, labels or a camera model.

  • Shadow - a special material for calculating the shadow map, set automatically in the render script.

Note that the materials that draw the shadows contain two samplers. Tex0 is your texture or atlas in the case of a sprite. Tex1 will be set automatically in the render script, it is a shadow map texture.

Tags:

Tag shadow marks that this object should cast a shadow. The render script will automatically substitute material for the object when it draws the shadow into the shadow map texture.

Render constants

In addition to the data about the light sources, their position in the world and their color, only four additional constants are passed to the render script and then to the shaders. These are:

  • Clear color or background color.

  • Fog color. Usually the same as the clear color. 4th component (.w) is the fog density (0 - 1.0). Where 0 is a very high density.

  • Fog minimum and maximum. Z-coord in the camera view space where the fog is started.

  • Ambient color. 4th component (ambient.w) used as the maximum value of final color component at each pixels. In fragment shader it looks like


diffuse_light = clamp(diffuse_light, 0.0, ambient.w);
final_pixel_color = texture_color * diffuse_light;

All constants are in constants.lua module.

Light setting

There is a special script and module with functions to setup initial render constants and manage the list of light sources during runtime in update function. This script sets constants into constants.lua module.

Your scene should contains one light_setting.script. In the example collection you can find it in the root game object.

lightsetting

  • Clear color or background color. R, G, B (0 - 1.0)

  • Fog color. Usually the same as the clear color.

  • Fog density (0 - 1.0). Where 0 is a very high density.

  • Fog Min Max - minimum and maximum of Z-coord in the camera view space where the fog is started.

  • Ambient color. R, G, B (0 - 1.0). This is an additional color added after blend all light sources. Among other things, it allows you to illuminate places that are in the shadows.

  • Color max uses as the maximum value of final color component at each pixels. If the value > 1.0, the places where light sources overlap each other may have an excessive value.

You may include several 'light_setting' scripts with different settings for the testing purposes, but only one should be enabled by trigg on property.

Sun

Only one light source casts shadows and this part is about him. There is a special script to setup initial render constants for the direct light source. Use ready to go prop "sun.go" from light_and_shadows/props folder. Or you can set this constants direct in the constants.lua file.

sun

  • Color of the light source. R, G, B (0 - 1.0).

  • Shadow - Inverted shadow color. Essentially these values are subtracted when the shader mixes the light from different sources. If you want to make the shadow more bluish, as artists do in daylight, make the B component slightly smaller than the others.

Note that color mixing from different light sources takes into account the normal to the surface of the object, be it a sprite or a 3D model.

Scale of objects

Since this is a pure 3D scene, we prefer to use a scale 1 meter to 1 unit (pixel) in the editor. This means that you can place a collade 3D models as is. Also such object scale is very useful for enabling the 'Move Whole Pixel' option in the 'Edit' menu of the editor. But on the other hand, you need to scale all sprites/spine models to a scale of 0.06 or something like that.

Bulb

To add a new light source to the scene you need to place bulb.script into the game object. Or use ready to go prop "bulb.go" from light_and_shadows/props folder.

bulb

  • Color of the light source. Red, Green, Blue. You may use a negative values as well as values more than 1.0 for override final color of pixel when all light sources are blending.
  • Power of the light source where 100 is normal 100 Watt bulb (just for reference, it's not exact).
  • Static. The light source can move around the game world. The position of the source is calculated in the lights manager script. To make a lamp dynamic, just set static to false. Otherwise leave static set to 'true' for better performance.
  • Light on. Turn on|off this bulb.
  • Direct for spotlight. On | off. The direction of rotation of the bulb game object is used as the direction where this light source will shine.
  • Angle is cone size for the shader calculations. In degrees.
  • Smoothness - how softly you want to blur the edges of the cone. From 0.0 (soft) to 1.0 (hard).
  • Static_spot - do you need to change spotlight direction in runtime? If 'true' the direction being calculation once for performance reason.
  • Num. If the bulb has a positive number, this light source does not participate in sorting by distance from the center of the screen. It is always visible. Of course, if the number of all bulbs is less than the MAX values of the light sources (16 in this demonstration). The default value is -1. These bulbs are sorted in the light manager script and you can add as many bulbs as you want. But only the first 16 (this is the value you can change) will get into the shader.
  • Also you may auto start particle FX attached to this game object and referenced in 'fxurl'.
  • Rotate set to true is this object need to follow the camera rotating (works as Bilboard).

This example uses 8 simultaneously calculated light sources in the scene. If you need to change this number of light sources, you must change it in 'light_and_shadows.lua' and in the /light_and_shadows/materials/fun.glsl file. Change the size of the arrays here:


#define LIGHT_COUNT 8
                    ^^

If you don't want to use light sources at all and you have enough ambient light from the "sun" you can optimize the fragment shaders by excluding the calculation of light sources from them. Just comment the line #define USE_DIFFUSE_LIGHT in /light_and_shadows/materials/fun.glsl file.

fun.glsl

Shadow's quality.

This bundle contains three variants of shadow in the fragment shader program. You can choose one of them by uncomment #define in /light_and_shadows/materials/fun.glsl shader file and comment others variants.


#define USE_PCF_SHADOW
// #define USE_PCF_POISSON_SHADOW
// #define USE_FLAT_SHADOW

USE_PCF_SHADOW. Standart quality.

Uses 3 reads (samplers) from the shadowmap texture + randomization UV.

bulb

USE_PCF_POISSON_SHADOW. Good quality.

Uses 8 sampler reads and Poisson filter + randomization UV.

bulb

USE_FLAT_SHADOW. Low quality.

Uses 1 sampler. Very simple variant.

bulb

Shadow casting on | off

To enable shadow casting set light_and_shadows.shadow as true in /light_and_shadows/light_and_shadows.lua file. Default value is true.

Upscaling

In some cases a useful rendering technique where your scene is rendered at a low resolution and then stretched to the screen. Can help to get acceptable FPS on slow devices with large physical screen resolution. To enable set light_and_shadows.upscale as true in /light_and_shadows/light_and_shadows.lua file. If ‘on’ all the objects are first rendered to a render target with a size no larger than specified in the project settings, then this entire render target is placed on the screen with linear scaling. Also to use this method you should add /light_and_shadows/props/render_target_quad.go game object to the main scene.

The final rendered target will be copied to the screen with a simple copy material, you can replace it with your own or, for example, use some post-processing effects.

Default value is false.

One more thing

In addition to the light scene, this example contains supporting scripts that I often use in my projects. All of them are located in the helper folder. There you can find a script for moving an object with the mouse or touch, you can move the camera, light source or any other object. A set of common methods, such as playing sound with positioning. Or simple_input which is described in detail here: https://github.com/Dragosha/defold-things/blob/master/helpers/simple_input.md

If you're new to Defold, notice how the coin collection example works, how the scripts communicate with each other without using hardcoded binding. The broadcast module from the ludobits library is extremely useful!

Happy Defolding!

Credits