mirror of
https://github.com/Relintai/material-maker.git
synced 2024-11-13 06:27:18 +01:00
6c615aeb02
Created base framework and created simple operators
19 lines
523 B
GDScript
19 lines
523 B
GDScript
tool
|
|
extends "res://addons/procedural_material/node_base.gd"
|
|
|
|
var subdivide
|
|
var u
|
|
var v
|
|
|
|
func _ready():
|
|
set_slot(0, false, 0, Color(0.5, 0.5, 1), true, 0, Color(0.5, 0.5, 1))
|
|
initialize_properties([ $GridContainer/subdivide, $GridContainer/u, $GridContainer/v ])
|
|
|
|
func get_shader_code(uv):
|
|
var rv = { defs="", code="", rgb=null, f=null }
|
|
if !generated:
|
|
rv.defs = "float "+name+"_f(vec2 uv) { return iqnoise(uv, "+str(subdivide)+", "+str(u)+", "+str(v)+"); }\n"
|
|
generated = true
|
|
rv.f = name+"_f("+uv+")"
|
|
return rv
|