diff --git a/scenes/button-six-state/six-state.tscn b/scenes/button-six-state/six-state.tscn index c3a2d826..7773e8e3 100644 --- a/scenes/button-six-state/six-state.tscn +++ b/scenes/button-six-state/six-state.tscn @@ -22,6 +22,14 @@ func _enter_tree() -> void: for fn in image_states: txr_states.append(load(fn)) $done.texture = txr_states[state] + + +func connect_check(signal_name: StringName, callable: Callable): + $check.connect(signal_name, callable) + + +func disconnect_check(signal_name: StringName, callable: Callable): + $check.disconnect(signal_name, callable) " [node name="six-state" type="GridContainer"] diff --git a/table/header-image.tscn b/table/header-image.tscn new file mode 100644 index 00000000..9fd8876a --- /dev/null +++ b/table/header-image.tscn @@ -0,0 +1,14 @@ +[gd_scene load_steps=2 format=3 uid="uid://cymcld4mjmlhj"] + +[sub_resource type="GDScript" id="GDScript_63652"] +script/source = "extends GridContainer +" + +[node name="header-image" type="GridContainer"] +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +columns = 2 +script = SubResource("GDScript_63652")