before planets

This commit is contained in:
Crizomb 2025-08-03 05:57:42 +02:00
parent bb6404e918
commit e09f05b566
57 changed files with 1203 additions and 90 deletions

View file

@ -0,0 +1,10 @@
shader_type sky;
uniform vec3 color_env : source_color;
uniform sampler2D noise_texture : repeat_enable;
uniform float noise_power;
uniform float speed;
void sky() {
COLOR = color_env * ((1.0+EYEDIR.y)/2.0) + noise_power*texture(noise_texture, SKY_COORDS + vec2(TIME*speed, 0)).xyz;
}

View file

@ -0,0 +1 @@
uid://tqpr7f3nr72k