material-maker/material_maker/nodes/ios/port.gd

30 lines
870 B
GDScript3
Raw Normal View History

extends HBoxContainer
func set_label(l : String) -> void:
$Name.set_text(l)
2019-12-22 23:27:02 +01:00
func set_type(t : String) -> void:
$Type.selected = mm_io_types.type_names.find(t)
2019-12-22 23:27:02 +01:00
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)
2019-11-06 23:49:26 +01:00
func _on_Name_label_changed(new_label) -> void:
get_parent().generator.set_port_name(get_index(), new_label)
2019-12-22 23:27:02 +01:00
func _on_Type_item_selected(ID) -> void:
get_parent().generator.set_port_type(get_index(), mm_io_types.type_names[ID])
2019-12-22 23:27:02 +01:00
2019-11-06 23:49:26 +01:00
func _on_Delete_pressed() -> void:
get_parent().generator.delete_port(get_index())
2019-11-06 23:49:26 +01:00
func _on_Up_pressed() -> void:
get_parent().generator.swap_ports(get_index(), get_index()-1)
2019-11-06 23:49:26 +01:00
func _on_Down_pressed() -> void:
get_parent().generator.swap_ports(get_index(), get_index()+1)