From 6505d89669a85dd8b0c6aa8ce5c7b21542ad9063 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Fri, 30 Jan 2026 15:49:10 +0200 Subject: Add rooms --- heatwaves.gdshader | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 heatwaves.gdshader (limited to 'heatwaves.gdshader') 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. +//} -- cgit v1.3