You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-12-04 17:04:49 +00:00
15 lines
350 B
Python
15 lines
350 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
|
|
if 'RD_GLSL' in env['BUILDERS']:
|
|
env.RD_GLSL('canvas.glsl');
|
|
env.RD_GLSL('canvas_occlusion.glsl');
|
|
env.RD_GLSL('blur.glsl');
|
|
env.RD_GLSL('cubemap_roughness.glsl');
|
|
env.RD_GLSL('scene_forward.glsl');
|
|
env.RD_GLSL('sky.glsl');
|
|
env.RD_GLSL('tonemap.glsl');
|
|
env.RD_GLSL('copy.glsl');
|
|
|