initial setup
This commit is contained in:
8
shaders/agent_shader.gdshader
Normal file
8
shaders/agent_shader.gdshader
Normal file
@@ -0,0 +1,8 @@
|
||||
shader_type canvas_item;
|
||||
|
||||
uniform sampler2D sim_texture;
|
||||
|
||||
void fragment() {
|
||||
vec3 c = texture(sim_texture, UV).rgb;
|
||||
COLOR = vec4(c, 1.0);
|
||||
}
|
||||
Reference in New Issue
Block a user