mirror of
https://github.com/Relintai/material-maker.git
synced 2024-11-13 06:27:18 +01:00
11 lines
142 B
GDScript3
11 lines
142 B
GDScript3
|
tool
|
||
|
extends HBoxContainer
|
||
|
|
||
|
var control = null
|
||
|
|
||
|
func _on_Link_pressed():
|
||
|
control.pick_linked()
|
||
|
|
||
|
func _on_Remove_pressed():
|
||
|
control.delete()
|