mirror of
https://github.com/Relintai/material-maker.git
synced 2024-11-13 06:27:18 +01:00
507586cbec
Updated base node class to support several outputs. Now bricks support 2 outputs : greyscale depth map, and (random) brick color. Now Voronoi supports 3 outputs : center distance, edge distance and cell color. Updated bricks example to use brick color output.
31 lines
1014 B
GDScript
31 lines
1014 B
GDScript
tool
|
|
extends "res://addons/procedural_material/node_base.gd"
|
|
|
|
var scale_x
|
|
var scale_y
|
|
var intensity
|
|
|
|
func _ready():
|
|
set_slot(0, false, 0, Color(0.5, 0.5, 1), true, 0, Color(0.5, 0.5, 1))
|
|
initialize_properties([ $HBoxContainer1/scale_x, $HBoxContainer2/scale_y, $HBoxContainer3/intensity ])
|
|
|
|
func _get_shader_code(uv, slot = 0):
|
|
var rv = { defs="", code="" }
|
|
if generated_variants.empty():
|
|
rv.defs = "vec4 "+name+"_xyzw(vec2 uv) { return voronoi(uv, vec2(%f, %f), %.9f, %d); }\n" % [ scale_x, scale_y, intensity, get_seed() ]
|
|
var variant_index = generated_variants.find(uv)
|
|
if variant_index == -1:
|
|
variant_index = generated_variants.size()
|
|
generated_variants.append(uv)
|
|
rv.code = "vec4 "+name+"_"+str(variant_index)+"_xyzw = "+name+"_xyzw("+uv+");\n"
|
|
if slot == 0:
|
|
rv.f = name+"_"+str(variant_index)+"_xyzw.z"
|
|
elif slot == 1:
|
|
rv.f = name+"_"+str(variant_index)+"_xyzw.w"
|
|
else:
|
|
rv.rgb = "rand3("+name+"_"+str(variant_index)+"_xyzw.xy)"
|
|
return rv
|
|
|
|
func _on_offset_changed():
|
|
update_shaders()
|