Newer
Older
DungeonShooting / DungeonShooting_Godot / resource / material / OffsetVertex.gdshader
shader_type canvas_item;

uniform vec2 offset = vec2(0.0 , 0.0);

void vertex() {
	VERTEX += offset;
}