mirror of
https://github.com/Relintai/material-maker.git
synced 2024-11-13 06:27:18 +01:00
39 lines
1009 B
GDScript
39 lines
1009 B
GDScript
tool
|
|
extends HBoxContainer
|
|
|
|
func _ready():
|
|
$Type.clear()
|
|
for tn in mm_io_types.type_names:
|
|
var t = mm_io_types.types[tn]
|
|
$Type.add_item(t.label)
|
|
|
|
func update_up_down_button() -> void:
|
|
var parent = get_parent()
|
|
if parent == null:
|
|
return
|
|
$Up.disabled = (get_index() == 0)
|
|
$Down.disabled = (get_index() == get_parent().get_child_count()-2)
|
|
|
|
func set_model_data(data) -> void:
|
|
for i in range(mm_io_types.type_names.size()):
|
|
if data.has(mm_io_types.type_names[i]):
|
|
$Type.selected = i
|
|
$Value.text = data[mm_io_types.type_names[i]]
|
|
|
|
func get_model_data() -> Dictionary:
|
|
return { mm_io_types.type_names[$Type.selected]:$Value.text }
|
|
|
|
func _on_Delete_pressed() -> void:
|
|
var p = get_parent()
|
|
p.remove_child(self)
|
|
p.update_up_down_buttons()
|
|
queue_free()
|
|
|
|
func _on_Up_pressed() -> void:
|
|
get_parent().move_child(self, get_index() - 1)
|
|
get_parent().update_up_down_buttons()
|
|
|
|
func _on_Down_pressed() -> void:
|
|
get_parent().move_child(self, get_index() + 1)
|
|
get_parent().update_up_down_buttons()
|