You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
324 B
13 lines
324 B
3 months ago
|
shader_type spatial;
|
||
|
render_mode blend_mix, depth_draw_opaque, cull_back, diffuse_burley, specular_schlick_ggx;
|
||
|
|
||
|
uniform sampler2DArray textures : source_color, filter_linear_mipmap, repeat_enable;
|
||
|
|
||
|
void fragment() {
|
||
|
ALBEDO = texture(textures, vec3(UV, UV2.x)).rgb;
|
||
|
|
||
|
METALLIC = 0.0;
|
||
|
SPECULAR = 0.5;
|
||
|
ROUGHNESS = 1.0;
|
||
|
}
|