mirror of
https://github.com/Relintai/material-maker.git
synced 2024-11-13 06:27:18 +01:00
21 lines
372 B
GDScript3
21 lines
372 B
GDScript3
|
tool
|
||
|
extends EditorPlugin
|
||
|
|
||
|
var editor = null
|
||
|
|
||
|
func _enter_tree():
|
||
|
editor = preload("res://addons/procedural_material/pm_editor.tscn").instance()
|
||
|
add_control_to_bottom_panel(editor, "ProceduralMaterial")
|
||
|
|
||
|
func _exit_tree():
|
||
|
remove_control_from_bottom_panel(editor)
|
||
|
editor.queue_free()
|
||
|
editor = null
|
||
|
|
||
|
func _get_state():
|
||
|
var s = {}
|
||
|
return s
|
||
|
|
||
|
func _set_state(s):
|
||
|
pass
|