From b27afc854efd9f8f16c65aa70dc2f0a5fe84c158 Mon Sep 17 00:00:00 2001 From: sasha80 Date: Wed, 11 Mar 2026 14:43:19 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D1=80=D0=B0=D0=B1=D0=BE=D1=82?= =?UTF-8?q?=D0=BA=D0=B0.=20WIP=20=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D1=8D=D0=BB=D0=B5=D0=BC=D0=B5=D0=BD?= =?UTF-8?q?=D1=82=D0=BE=D0=B2=20=D0=B4=D0=BB=D1=8F=20=D0=AD=D0=9C=D0=A1-?= =?UTF-8?q?=D0=A2=D0=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scenes/button-six-state/six-state.tscn | 8 ++++++++ table/header-image.tscn | 14 ++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 table/header-image.tscn 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")