diff options
author | Fredia Huya-Kouadio <fhuya@meta.com> | 2023-07-14 13:46:24 -0700 |
---|---|---|
committer | Fredia Huya-Kouadio <fhuya@meta.com> | 2023-07-14 13:46:24 -0700 |
commit | b4844e98619766232645d70f80a29c2a53bc2709 (patch) | |
tree | 500a6deee2dfbd36f4356d69a2d5cb762314b03f /plugins/hello_signals/demo/Main.tscn | |
parent | 1d19d5912d1ac5bfa3cf6cc30f086aee8f0464f2 (diff) | |
download | godot-android-samples-b4844e98619766232645d70f80a29c2a53bc2709.tar.gz godot-android-samples-b4844e98619766232645d70f80a29c2a53bc2709.tar.bz2 godot-android-samples-b4844e98619766232645d70f80a29c2a53bc2709.zip |
Update the directory structure to make room for additional Godot Android samples besides plugins
Diffstat (limited to 'plugins/hello_signals/demo/Main.tscn')
-rw-r--r-- | plugins/hello_signals/demo/Main.tscn | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/plugins/hello_signals/demo/Main.tscn b/plugins/hello_signals/demo/Main.tscn new file mode 100644 index 0000000..2f51657 --- /dev/null +++ b/plugins/hello_signals/demo/Main.tscn @@ -0,0 +1,26 @@ +[gd_scene load_steps=3 format=3 uid="uid://bdybkbximkyj2"] + +[ext_resource type="Script" path="res://Main.gd" id="1"] + +[sub_resource type="StyleBoxEmpty" id="1"] + +[node name="Main" type="Node2D"] +script = ExtResource("1") + +[node name="Button" type="Button" parent="."] +offset_left = 90.0 +offset_top = 178.0 +offset_right = 281.0 +offset_bottom = 261.0 +scale = Vector2(2, 2) +text = "Start Timer" + +[node name="Label" type="Label" parent="."] +offset_left = 515.0 +offset_top = 217.0 +offset_right = 591.0 +offset_bottom = 265.0 +scale = Vector2(2, 2) +theme_override_styles/normal = SubResource("1") +text = "00" +uppercase = true |