diff options
| author | Jan Tuomi <jan@jantuomi.fi> | 2026-01-30 15:49:10 +0200 |
|---|---|---|
| committer | Jan Tuomi <jan@jantuomi.fi> | 2026-01-30 15:49:10 +0200 |
| commit | 6505d89669a85dd8b0c6aa8ce5c7b21542ad9063 (patch) | |
| tree | 1c0131aed7566996079fc28e158a6586f0a210b5 /heatwaves.gdshader | |
| parent | aa2f8723ab5b87bb357d58a0165321a2060debb3 (diff) | |
Add rooms
Diffstat (limited to 'heatwaves.gdshader')
| -rw-r--r-- | heatwaves.gdshader | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/heatwaves.gdshader b/heatwaves.gdshader new file mode 100644 index 0000000..1b816d2 --- /dev/null +++ b/heatwaves.gdshader @@ -0,0 +1,14 @@ +shader_type canvas_item; + +void vertex() { + VERTEX.x += 5.0 * sin(0.5 * TIME + 0.5 * VERTEX.y); +} + +void fragment() { + // Called for every pixel the material is visible on. +} + +//void light() { +// // Called for every pixel for every light affecting the CanvasItem. +// // Uncomment to replace the default light processing function with this one. +//} |
