shader_type spatial; render_mode unshaded; uniform sampler2D starlight_noise; uniform sampler2D starlight_textures; void fragment() { ALBEDO = vec3(.0, .0, texture(starlight_textures, UV + texture(starlight_noise, UV).xz).z); }