mirror of
https://github.com/Relintai/mat_maker_gd.git
synced 2025-05-22 11:37:42 +02:00
46 lines
1.5 KiB
GLSL
46 lines
1.5 KiB
GLSL
shader_type spatial;
|
|
render_mode blend_mix,depth_draw_opaque,cull_back,diffuse_burley,specular_schlick_ggx;
|
|
uniform vec4 albedo : hint_color;
|
|
uniform sampler2D texture_albedo : hint_albedo;
|
|
uniform float specular;
|
|
uniform sampler2D texture_orm : hint_albedo;
|
|
uniform float metallic;
|
|
uniform float roughness : hint_range(0,1);
|
|
uniform float point_size : hint_range(0,128);
|
|
uniform sampler2D texture_emission : hint_black_albedo;
|
|
uniform vec4 emission : hint_color;
|
|
uniform float emission_energy;
|
|
uniform sampler2D texture_normal : hint_normal;
|
|
uniform float normal_scale : hint_range(-16,16);
|
|
uniform float ao_light_affect;
|
|
uniform sampler2D texture_depth : hint_black;
|
|
uniform float depth_scale;
|
|
uniform int depth_min_layers;
|
|
uniform int depth_max_layers;
|
|
uniform vec2 depth_flip;
|
|
uniform vec3 uv1_scale;
|
|
uniform vec3 uv1_offset;
|
|
uniform vec3 uv2_scale;
|
|
uniform vec3 uv2_offset;
|
|
|
|
void vertex() {
|
|
UV = UV*uv1_scale.xy+uv1_offset.xy;
|
|
VERTEX = VERTEX+NORMAL*depth_scale*(1.0-texture(texture_depth, UV).r);
|
|
}
|
|
|
|
void fragment() {
|
|
vec2 base_uv = UV;
|
|
vec4 albedo_tex = texture(texture_albedo, base_uv);
|
|
ALBEDO = albedo.rgb * albedo_tex.rgb;
|
|
vec4 orm_tex = texture(texture_orm, base_uv);
|
|
METALLIC = metallic*orm_tex.b;
|
|
ROUGHNESS = roughness*orm_tex.g;
|
|
SPECULAR = specular;
|
|
NORMALMAP = texture(texture_normal,base_uv).rgb;
|
|
NORMALMAP_DEPTH = normal_scale;
|
|
vec3 emission_tex = texture(texture_emission,base_uv).rgb;
|
|
EMISSION = (emission.rgb+emission_tex)*emission_energy;
|
|
AO = orm_tex.r;
|
|
AO_LIGHT_AFFECT = ao_light_affect;
|
|
}
|