mirror of
https://github.com/Relintai/material-maker.git
synced 2024-11-13 06:27:18 +01:00
17 lines
255 B
GDScript3
17 lines
255 B
GDScript3
|
tool
|
||
|
extends MMGenBase
|
||
|
class_name MMGenDebug
|
||
|
|
||
|
"""
|
||
|
Can be used to get generated shader
|
||
|
"""
|
||
|
|
||
|
func get_type() -> String:
|
||
|
return "debug"
|
||
|
|
||
|
func get_type_name() -> String:
|
||
|
return "Debug"
|
||
|
|
||
|
func get_input_defs() -> Array:
|
||
|
return [ { name="in", type="rgba" } ]
|