mirror of
https://github.com/Steffo99/swear-jar.git
synced 2024-11-22 15:44:21 +00:00
Merge branch 'main' of https://github.com/Steffo99/ld54
This commit is contained in:
commit
d21baefd71
14 changed files with 347 additions and 46 deletions
|
@ -20,13 +20,14 @@ var collected_count: int = 0
|
||||||
@export var collecting_amount: int
|
@export var collecting_amount: int
|
||||||
|
|
||||||
## The collector has picked up an object.
|
## The collector has picked up an object.
|
||||||
signal collected(what: PhysicsBody2D)
|
signal collected(body: PhysicsBody2D)
|
||||||
|
|
||||||
## The collector has received its collection goal and is about to reset.
|
## The collector has received its collection goal and is about to reset.
|
||||||
signal goal
|
signal goal
|
||||||
|
|
||||||
|
|
||||||
func _on_body_entered(body: Node2D):
|
func _on_body_entered(body: Node2D):
|
||||||
|
|
||||||
if body is PhysicsBody2D:
|
if body is PhysicsBody2D:
|
||||||
if body.collision_layer & collecting_collision_mask:
|
if body.collision_layer & collecting_collision_mask:
|
||||||
var collectible: Collectible = body.get_node("Collectible")
|
var collectible: Collectible = body.get_node("Collectible")
|
||||||
|
|
12
convertors/copper_to_silver.gd
Normal file
12
convertors/copper_to_silver.gd
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
extends StaticBody2D
|
||||||
|
|
||||||
|
@export var scene: PackedScene
|
||||||
|
|
||||||
|
func _on_collector_collected(body):
|
||||||
|
body.queue_free()
|
||||||
|
|
||||||
|
|
||||||
|
func _on_collector_goal():
|
||||||
|
print("silver")
|
||||||
|
$Spawner.spawn()
|
||||||
|
|
58
convertors/copper_to_silver.tscn
Normal file
58
convertors/copper_to_silver.tscn
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
[gd_scene load_steps=10 format=3 uid="uid://ratkps4plkhl"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" path="res://convertors/copper_to_silver.gd" id="1_jjv83"]
|
||||||
|
[ext_resource type="PackedScene" uid="uid://dme22vvfgme5f" path="res://entity/coin_silver.tscn" id="2_orv64"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://b0uefih0ccwp3" path="res://entity/copper_converter_front_1.png" id="2_vm6by"]
|
||||||
|
[ext_resource type="PackedScene" uid="uid://c5w3b55aiui6c" path="res://collector/collector.tscn" id="3_a4naa"]
|
||||||
|
[ext_resource type="PackedScene" uid="uid://c67lfbk4gf1ga" path="res://spawner/spawner.tscn" id="5_1n0vw"]
|
||||||
|
|
||||||
|
[sub_resource type="RectangleShape2D" id="RectangleShape2D_k11if"]
|
||||||
|
size = Vector2(26, 5)
|
||||||
|
|
||||||
|
[sub_resource type="RectangleShape2D" id="RectangleShape2D_3i6q7"]
|
||||||
|
size = Vector2(3, 29)
|
||||||
|
|
||||||
|
[sub_resource type="RectangleShape2D" id="RectangleShape2D_eqmlo"]
|
||||||
|
size = Vector2(3, 28)
|
||||||
|
|
||||||
|
[sub_resource type="RectangleShape2D" id="RectangleShape2D_31dtl"]
|
||||||
|
size = Vector2(25.8333, 5)
|
||||||
|
|
||||||
|
[node name="CopperToSilver" type="StaticBody2D"]
|
||||||
|
scale = Vector2(3, 3)
|
||||||
|
script = ExtResource("1_jjv83")
|
||||||
|
scene = ExtResource("2_orv64")
|
||||||
|
|
||||||
|
[node name="CopperConverterFront1" type="Sprite2D" parent="."]
|
||||||
|
texture_filter = 1
|
||||||
|
texture = ExtResource("2_vm6by")
|
||||||
|
|
||||||
|
[node name="Collector" parent="." instance=ExtResource("3_a4naa")]
|
||||||
|
collecting_types = Array[StringName]([&"Copper"])
|
||||||
|
collecting_collision_mask = 4
|
||||||
|
collecting_amount = 10
|
||||||
|
|
||||||
|
[node name="CollisionShape2D" type="CollisionShape2D" parent="Collector"]
|
||||||
|
position = Vector2(0, 9.5)
|
||||||
|
shape = SubResource("RectangleShape2D_k11if")
|
||||||
|
|
||||||
|
[node name="Spawner" parent="." instance=ExtResource("5_1n0vw")]
|
||||||
|
position = Vector2(-0.333333, 19.3333)
|
||||||
|
scene = ExtResource("2_orv64")
|
||||||
|
buffer_cap = 1
|
||||||
|
spawn_rotation_range = 90.0
|
||||||
|
|
||||||
|
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
||||||
|
position = Vector2(-14.3333, -1)
|
||||||
|
shape = SubResource("RectangleShape2D_3i6q7")
|
||||||
|
|
||||||
|
[node name="CollisionShape2D2" type="CollisionShape2D" parent="."]
|
||||||
|
position = Vector2(14.5, -1.66667)
|
||||||
|
shape = SubResource("RectangleShape2D_eqmlo")
|
||||||
|
|
||||||
|
[node name="CollisionShape2D3" type="CollisionShape2D" parent="."]
|
||||||
|
position = Vector2(0, 12.3333)
|
||||||
|
shape = SubResource("RectangleShape2D_31dtl")
|
||||||
|
|
||||||
|
[connection signal="collected" from="Collector" to="." method="_on_collector_collected"]
|
||||||
|
[connection signal="goal" from="Collector" to="." method="_on_collector_goal"]
|
|
@ -7,7 +7,7 @@
|
||||||
[ext_resource type="PackedScene" uid="uid://ujpra0s1kpqi" path="res://value/valuable.tscn" id="5_jdvvd"]
|
[ext_resource type="PackedScene" uid="uid://ujpra0s1kpqi" path="res://value/valuable.tscn" id="5_jdvvd"]
|
||||||
|
|
||||||
[sub_resource type="RectangleShape2D" id="RectangleShape2D_c6byl"]
|
[sub_resource type="RectangleShape2D" id="RectangleShape2D_c6byl"]
|
||||||
size = Vector2(16, 5)
|
size = Vector2(16.5, 5.08333)
|
||||||
|
|
||||||
[node name="CoinCopper" type="RigidBody2D"]
|
[node name="CoinCopper" type="RigidBody2D"]
|
||||||
collision_layer = 5
|
collision_layer = 5
|
||||||
|
@ -19,7 +19,6 @@ linear_damp = 0.1
|
||||||
angular_damp = 0.1
|
angular_damp = 0.1
|
||||||
|
|
||||||
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
||||||
scale = Vector2(3, 3)
|
|
||||||
shape = SubResource("RectangleShape2D_c6byl")
|
shape = SubResource("RectangleShape2D_c6byl")
|
||||||
|
|
||||||
[node name="Sprite" type="Sprite2D" parent="CollisionShape2D"]
|
[node name="Sprite" type="Sprite2D" parent="CollisionShape2D"]
|
||||||
|
|
38
entity/coin_silver.tscn
Normal file
38
entity/coin_silver.tscn
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
[gd_scene load_steps=7 format=3 uid="uid://dme22vvfgme5f"]
|
||||||
|
|
||||||
|
[ext_resource type="PhysicsMaterial" uid="uid://c6kn1an85lccr" path="res://entity/coin_physics_material.tres" id="1_4sq1a"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://m5t74cw8ht5b" path="res://entity/coin_silver_2.png" id="2_0u0up"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://beikajpd08pwr" path="res://entity/coin_silver_outline_2.png" id="3_nxu2p"]
|
||||||
|
[ext_resource type="PackedScene" uid="uid://bk1vvq5rug01m" path="res://collector/collectible.tscn" id="4_12sii"]
|
||||||
|
[ext_resource type="PackedScene" uid="uid://ujpra0s1kpqi" path="res://value/valuable.tscn" id="5_u3bvw"]
|
||||||
|
|
||||||
|
[sub_resource type="RectangleShape2D" id="RectangleShape2D_c6byl"]
|
||||||
|
size = Vector2(23, 6.16667)
|
||||||
|
|
||||||
|
[node name="CoinSilver" type="RigidBody2D"]
|
||||||
|
collision_layer = 5
|
||||||
|
collision_mask = 7
|
||||||
|
inertia = 20000.0
|
||||||
|
physics_material_override = ExtResource("1_4sq1a")
|
||||||
|
continuous_cd = 1
|
||||||
|
linear_damp = 0.1
|
||||||
|
angular_damp = 0.1
|
||||||
|
|
||||||
|
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
||||||
|
scale = Vector2(2, 2)
|
||||||
|
shape = SubResource("RectangleShape2D_c6byl")
|
||||||
|
|
||||||
|
[node name="Sprite" type="Sprite2D" parent="CollisionShape2D"]
|
||||||
|
texture_filter = 1
|
||||||
|
texture = ExtResource("2_0u0up")
|
||||||
|
|
||||||
|
[node name="Outline" type="Sprite2D" parent="CollisionShape2D"]
|
||||||
|
z_index = -10
|
||||||
|
texture_filter = 1
|
||||||
|
texture = ExtResource("3_nxu2p")
|
||||||
|
|
||||||
|
[node name="Collectible" parent="." instance=ExtResource("4_12sii")]
|
||||||
|
type = &"Silver"
|
||||||
|
|
||||||
|
[node name="Valuable" parent="." instance=ExtResource("5_u3bvw")]
|
||||||
|
value = 10
|
34
entity/diamond.png.import
Normal file
34
entity/diamond.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bquk2q5g6bst5"
|
||||||
|
path="res://.godot/imported/diamond.png-e255ab09d23a24a6563c34236c6422d4.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://entity/diamond.png"
|
||||||
|
dest_files=["res://.godot/imported/diamond.png-e255ab09d23a24a6563c34236c6422d4.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
34
entity/gemstone.png.import
Normal file
34
entity/gemstone.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://b21bsbo5f0ed7"
|
||||||
|
path="res://.godot/imported/gemstone.png-9e77a54275f3114b69765356c5f68288.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://entity/gemstone.png"
|
||||||
|
dest_files=["res://.godot/imported/gemstone.png-9e77a54275f3114b69765356c5f68288.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
34
entity/upgrade_copper.png.import
Normal file
34
entity/upgrade_copper.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://c8pvjgtr2ufjl"
|
||||||
|
path="res://.godot/imported/upgrade_copper.png-92818496e71584b34e672f67618f806c.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://entity/upgrade_copper.png"
|
||||||
|
dest_files=["res://.godot/imported/upgrade_copper.png-92818496e71584b34e672f67618f806c.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
34
entity/upgrade_gold.png.import
Normal file
34
entity/upgrade_gold.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://taojrwr7xrp4"
|
||||||
|
path="res://.godot/imported/upgrade_gold.png-a48bc75df5dc8202543af64ada12eda4.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://entity/upgrade_gold.png"
|
||||||
|
dest_files=["res://.godot/imported/upgrade_gold.png-a48bc75df5dc8202543af64ada12eda4.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
34
entity/upgrade_silver.png.import
Normal file
34
entity/upgrade_silver.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://7b12rwclhrq0"
|
||||||
|
path="res://.godot/imported/upgrade_silver.png-50b5b05efdbda1c035ad16dd8135bc03.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://entity/upgrade_silver.png"
|
||||||
|
dest_files=["res://.godot/imported/upgrade_silver.png-50b5b05efdbda1c035ad16dd8135bc03.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
|
@ -1,10 +1,11 @@
|
||||||
[gd_scene load_steps=6 format=3 uid="uid://c3rxmcwa5nqng"]
|
[gd_scene load_steps=7 format=3 uid="uid://c3rxmcwa5nqng"]
|
||||||
|
|
||||||
[ext_resource type="Script" path="res://game/game.gd" id="1_i3ly0"]
|
[ext_resource type="Script" path="res://game/game.gd" id="1_i3ly0"]
|
||||||
[ext_resource type="PackedScene" uid="uid://bllsprv8orpn4" path="res://bottle/bottle.tscn" id="1_y7o2l"]
|
[ext_resource type="PackedScene" uid="uid://bllsprv8orpn4" path="res://bottle/bottle.tscn" id="1_y7o2l"]
|
||||||
[ext_resource type="PackedScene" uid="uid://d05b8jy3xmpcb" path="res://bottle/gravity_from_gyro.tscn" id="2_h2pfr"]
|
[ext_resource type="PackedScene" uid="uid://d05b8jy3xmpcb" path="res://bottle/gravity_from_gyro.tscn" id="2_h2pfr"]
|
||||||
[ext_resource type="PackedScene" uid="uid://c67lfbk4gf1ga" path="res://spawner/spawner.tscn" id="3_qwsty"]
|
[ext_resource type="PackedScene" uid="uid://c67lfbk4gf1ga" path="res://spawner/spawner.tscn" id="3_qwsty"]
|
||||||
[ext_resource type="PackedScene" uid="uid://c3kitncwpi42j" path="res://entity/coin_copper.tscn" id="4_e5nwi"]
|
[ext_resource type="PackedScene" uid="uid://c3kitncwpi42j" path="res://entity/coin_copper.tscn" id="4_e5nwi"]
|
||||||
|
[ext_resource type="PackedScene" uid="uid://ratkps4plkhl" path="res://convertors/copper_to_silver.tscn" id="6_tf2pv"]
|
||||||
|
|
||||||
[node name="Game" type="Node2D"]
|
[node name="Game" type="Node2D"]
|
||||||
texture_filter = 1
|
texture_filter = 1
|
||||||
|
@ -14,6 +15,10 @@ script = ExtResource("1_i3ly0")
|
||||||
|
|
||||||
[node name="GravityFromGyro" parent="Bottle" instance=ExtResource("2_h2pfr")]
|
[node name="GravityFromGyro" parent="Bottle" instance=ExtResource("2_h2pfr")]
|
||||||
|
|
||||||
|
[node name="CopperToSilver" parent="." instance=ExtResource("6_tf2pv")]
|
||||||
|
z_index = 10
|
||||||
|
position = Vector2(2, -314)
|
||||||
|
|
||||||
[node name="TimeSpawner" parent="." instance=ExtResource("3_qwsty")]
|
[node name="TimeSpawner" parent="." instance=ExtResource("3_qwsty")]
|
||||||
position = Vector2(0, -480)
|
position = Vector2(0, -480)
|
||||||
scene = ExtResource("4_e5nwi")
|
scene = ExtResource("4_e5nwi")
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
[ext_resource type="Theme" uid="uid://ba5utvfhnxa5i" path="res://interface/interface_theme.tres" id="1_r2qbu"]
|
[ext_resource type="Theme" uid="uid://ba5utvfhnxa5i" path="res://interface/interface_theme.tres" id="1_r2qbu"]
|
||||||
|
|
||||||
[node name="PurchasableItem" type="Panel"]
|
[node name="PurchasableItem" type="Panel"]
|
||||||
custom_minimum_size = Vector2(0, 256)
|
custom_minimum_size = Vector2(0, 240)
|
||||||
anchors_preset = 10
|
anchors_preset = 10
|
||||||
anchor_right = 1.0
|
anchor_right = 1.0
|
||||||
grow_horizontal = 2
|
grow_horizontal = 2
|
||||||
|
|
|
@ -55,25 +55,36 @@ size_flags_horizontal = 8
|
||||||
text = "Back"
|
text = "Back"
|
||||||
alignment = 2
|
alignment = 2
|
||||||
|
|
||||||
[node name="Scrollable" type="ScrollContainer" parent="Rows"]
|
[node name="PaddedScrollable" type="HBoxContainer" parent="Rows"]
|
||||||
clip_contents = false
|
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
size_flags_vertical = 3
|
size_flags_vertical = 3
|
||||||
|
|
||||||
|
[node name="PaddedScrollableLeft" type="Control" parent="Rows/PaddedScrollable"]
|
||||||
|
custom_minimum_size = Vector2(8, 0)
|
||||||
|
layout_mode = 2
|
||||||
|
size_flags_horizontal = 0
|
||||||
|
|
||||||
|
[node name="Scrollable" type="ScrollContainer" parent="Rows/PaddedScrollable"]
|
||||||
|
clip_contents = false
|
||||||
|
layout_mode = 2
|
||||||
|
size_flags_horizontal = 3
|
||||||
|
size_flags_vertical = 3
|
||||||
|
scroll_vertical = 100
|
||||||
horizontal_scroll_mode = 0
|
horizontal_scroll_mode = 0
|
||||||
vertical_scroll_mode = 2
|
vertical_scroll_mode = 2
|
||||||
|
|
||||||
[node name="ScrollableItems" type="VBoxContainer" parent="Rows/Scrollable"]
|
[node name="ScrollableItems" type="VBoxContainer" parent="Rows/PaddedScrollable/Scrollable"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
size_flags_horizontal = 3
|
size_flags_horizontal = 3
|
||||||
size_flags_vertical = 3
|
size_flags_vertical = 3
|
||||||
|
|
||||||
[node name="ConvertCategory" type="VBoxContainer" parent="Rows/Scrollable/ScrollableItems"]
|
[node name="ConvertCategory" type="VBoxContainer" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
[node name="PurchasableItemPadding5" parent="Rows/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("3_4feaj")]
|
[node name="PurchasableItemPadding5" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("3_4feaj")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
[node name="ImproveYourItemsLabel" type="Label" parent="Rows/Scrollable/ScrollableItems/ConvertCategory"]
|
[node name="ImproveYourItemsLabel" type="Label" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ConvertCategory"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
theme_override_font_sizes/font_size = 24
|
theme_override_font_sizes/font_size = 24
|
||||||
text = "Improve your items!"
|
text = "Improve your items!"
|
||||||
|
@ -82,10 +93,10 @@ vertical_alignment = 1
|
||||||
autowrap_mode = 2
|
autowrap_mode = 2
|
||||||
uppercase = true
|
uppercase = true
|
||||||
|
|
||||||
[node name="PurchasableItemPadding3" parent="Rows/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("3_4feaj")]
|
[node name="PurchasableItemPadding3" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("3_4feaj")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
[node name="BuySilverifier" parent="Rows/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("2_2dtc0")]
|
[node name="BuySilverifier" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("2_2dtc0")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
item_icon = ExtResource("5_lu2tr")
|
item_icon = ExtResource("5_lu2tr")
|
||||||
item_name = "Silverifier"
|
item_name = "Silverifier"
|
||||||
|
@ -94,56 +105,56 @@ item_cost_text = "35 copper"
|
||||||
item_cost_type = &"Copper"
|
item_cost_type = &"Copper"
|
||||||
item_cost_goal = 35
|
item_cost_goal = 35
|
||||||
|
|
||||||
[node name="PurchasableItemPadding" parent="Rows/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("3_4feaj")]
|
[node name="PurchasableItemPadding" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("3_4feaj")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
[node name="BuyGoldenser" parent="Rows/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("2_2dtc0")]
|
[node name="BuyGoldenser" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("2_2dtc0")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
item_name = "Goldenser"
|
item_name = "Goldenser"
|
||||||
item_description = "Trades in ten silver coins for a sparkly gold coin!"
|
item_description = "Trades in ten silver coins for a sparkly gold coin!"
|
||||||
item_cost_text = "??"
|
item_cost_text = "??"
|
||||||
has_unlocked = false
|
has_unlocked = false
|
||||||
|
|
||||||
[node name="PurchasableItemPadding2" parent="Rows/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("3_4feaj")]
|
[node name="PurchasableItemPadding2" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("3_4feaj")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
[node name="BuyGemificator" parent="Rows/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("2_2dtc0")]
|
[node name="BuyGemificator" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("2_2dtc0")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
item_name = "Gemificator"
|
item_name = "Gemificator"
|
||||||
item_description = "Converts ten gold coins into a randomly colored gem!"
|
item_description = "Converts ten gold coins into a randomly colored gem!"
|
||||||
item_cost_text = "??"
|
item_cost_text = "??"
|
||||||
has_unlocked = false
|
has_unlocked = false
|
||||||
|
|
||||||
[node name="PurchasableItemPadding4" parent="Rows/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("3_4feaj")]
|
[node name="PurchasableItemPadding4" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("3_4feaj")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
[node name="BuyCompressor" parent="Rows/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("2_2dtc0")]
|
[node name="BuyCompressor" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("2_2dtc0")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
item_name = "Compressor"
|
item_name = "Compressor"
|
||||||
item_description = "Consumes ten gold coins to create either a precious white diamond or an useless lump of coal!"
|
item_description = "Consumes ten gold coins to create either a precious white diamond or an useless lump of coal!"
|
||||||
item_cost_text = "??"
|
item_cost_text = "??"
|
||||||
has_unlocked = false
|
has_unlocked = false
|
||||||
|
|
||||||
[node name="PurchasableItemPadding6" parent="Rows/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("3_4feaj")]
|
[node name="PurchasableItemPadding6" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("3_4feaj")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
[node name="BuyArtifactomatic" parent="Rows/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("2_2dtc0")]
|
[node name="BuyArtifactomatic" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("2_2dtc0")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
item_name = "Artifactic"
|
item_name = "Artifactic"
|
||||||
item_description = "Assembles an artifact from twenty-five gold coins and a gem or a diamond!"
|
item_description = "Assembles an artifact from twenty-five gold coins and a gem or a diamond!"
|
||||||
item_cost_text = "??"
|
item_cost_text = "??"
|
||||||
has_unlocked = false
|
has_unlocked = false
|
||||||
|
|
||||||
[node name="PurchasableItemPadding7" parent="Rows/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("3_4feaj")]
|
[node name="PurchasableItemPadding7" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ConvertCategory" instance=ExtResource("3_4feaj")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
[node name="ManualCategory" type="VBoxContainer" parent="Rows/Scrollable/ScrollableItems"]
|
[node name="ManualCategory" type="VBoxContainer" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
[node name="PurchasableItemPadding5" parent="Rows/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("3_4feaj")]
|
[node name="PurchasableItemPadding5" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("3_4feaj")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
[node name="EarnCoinsLabel" type="Label" parent="Rows/Scrollable/ScrollableItems/ManualCategory"]
|
[node name="EarnCoinsLabel" type="Label" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
theme_override_font_sizes/font_size = 24
|
theme_override_font_sizes/font_size = 24
|
||||||
text = "Get rich quick!"
|
text = "Get rich quick!"
|
||||||
|
@ -152,76 +163,76 @@ vertical_alignment = 1
|
||||||
autowrap_mode = 2
|
autowrap_mode = 2
|
||||||
uppercase = true
|
uppercase = true
|
||||||
|
|
||||||
[node name="PurchasableItemPadding3" parent="Rows/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("3_4feaj")]
|
[node name="PurchasableItemPadding3" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("3_4feaj")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
[node name="BuyAutoCopper" parent="Rows/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("2_2dtc0")]
|
[node name="BuyAutoCopper" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("2_2dtc0")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
item_name = "Auto-copper"
|
item_name = "Auto-copper"
|
||||||
item_description = "Receive two copper coins per second!"
|
item_description = "Receive two copper coins per second!"
|
||||||
item_cost_text = "??"
|
item_cost_text = "??"
|
||||||
has_unlocked = false
|
has_unlocked = false
|
||||||
|
|
||||||
[node name="PurchasableItemPadding" parent="Rows/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("3_4feaj")]
|
[node name="PurchasableItemPadding" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("3_4feaj")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
[node name="BuyHeliCopper" parent="Rows/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("2_2dtc0")]
|
[node name="BuyHeliCopper" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("2_2dtc0")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
item_name = "Heli-copper"
|
item_name = "Heli-copper"
|
||||||
item_description = "Receive eight copper coins per second!"
|
item_description = "Receive eight copper coins per second!"
|
||||||
item_cost_text = "??"
|
item_cost_text = "??"
|
||||||
has_unlocked = false
|
has_unlocked = false
|
||||||
|
|
||||||
[node name="PurchasableItemPadding2" parent="Rows/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("3_4feaj")]
|
[node name="PurchasableItemPadding2" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("3_4feaj")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
[node name="BuyAutoSilver" parent="Rows/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("2_2dtc0")]
|
[node name="BuyAutoSilver" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("2_2dtc0")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
item_name = "Auto-silver"
|
item_name = "Auto-silver"
|
||||||
item_description = "Receive two silver coins per second!"
|
item_description = "Receive two silver coins per second!"
|
||||||
item_cost_text = "??"
|
item_cost_text = "??"
|
||||||
has_unlocked = false
|
has_unlocked = false
|
||||||
|
|
||||||
[node name="PurchasableItemPadding4" parent="Rows/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("3_4feaj")]
|
[node name="PurchasableItemPadding4" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("3_4feaj")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
[node name="BuySuperSilver" parent="Rows/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("2_2dtc0")]
|
[node name="BuySuperSilver" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("2_2dtc0")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
item_name = "Super silver"
|
item_name = "Super silver"
|
||||||
item_description = "Receive eight silver coins per second!"
|
item_description = "Receive eight silver coins per second!"
|
||||||
item_cost_text = "??"
|
item_cost_text = "??"
|
||||||
has_unlocked = false
|
has_unlocked = false
|
||||||
|
|
||||||
[node name="PurchasableItemPadding6" parent="Rows/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("3_4feaj")]
|
[node name="PurchasableItemPadding6" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("3_4feaj")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
[node name="BuyAutoGold" parent="Rows/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("2_2dtc0")]
|
[node name="BuyAutoGold" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("2_2dtc0")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
item_name = "Auto-gold"
|
item_name = "Auto-gold"
|
||||||
item_description = "Receive two gold coins per second!"
|
item_description = "Receive two gold coins per second!"
|
||||||
item_cost_text = "??"
|
item_cost_text = "??"
|
||||||
has_unlocked = false
|
has_unlocked = false
|
||||||
|
|
||||||
[node name="PurchasableItemPadding7" parent="Rows/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("3_4feaj")]
|
[node name="PurchasableItemPadding7" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("3_4feaj")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
[node name="BuyMidasTouch" parent="Rows/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("2_2dtc0")]
|
[node name="BuyMidasTouch" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("2_2dtc0")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
item_name = "Midas Touch"
|
item_name = "Midas Touch"
|
||||||
item_description = "Receive eight gold coins per second!"
|
item_description = "Receive eight gold coins per second!"
|
||||||
item_cost_text = "??"
|
item_cost_text = "??"
|
||||||
has_unlocked = false
|
has_unlocked = false
|
||||||
|
|
||||||
[node name="PurchasableItemPadding8" parent="Rows/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("3_4feaj")]
|
[node name="PurchasableItemPadding8" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory" instance=ExtResource("3_4feaj")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
[node name="AutomaticCategory" type="VBoxContainer" parent="Rows/Scrollable/ScrollableItems"]
|
[node name="AutomaticCategory" type="VBoxContainer" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
[node name="PurchasableItemPadding5" parent="Rows/Scrollable/ScrollableItems/AutomaticCategory" instance=ExtResource("3_4feaj")]
|
[node name="PurchasableItemPadding5" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/AutomaticCategory" instance=ExtResource("3_4feaj")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
[node name="EarnCoinsLabel" type="Label" parent="Rows/Scrollable/ScrollableItems/AutomaticCategory"]
|
[node name="EarnCoinsLabel" type="Label" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/AutomaticCategory"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
theme_override_font_sizes/font_size = 24
|
theme_override_font_sizes/font_size = 24
|
||||||
text = "Automatic coin dropper"
|
text = "Automatic coin dropper"
|
||||||
|
@ -230,29 +241,34 @@ vertical_alignment = 1
|
||||||
autowrap_mode = 2
|
autowrap_mode = 2
|
||||||
uppercase = true
|
uppercase = true
|
||||||
|
|
||||||
[node name="PurchasableItemPadding3" parent="Rows/Scrollable/ScrollableItems/AutomaticCategory" instance=ExtResource("3_4feaj")]
|
[node name="PurchasableItemPadding3" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/AutomaticCategory" instance=ExtResource("3_4feaj")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
[node name="BuySilverStar" parent="Rows/Scrollable/ScrollableItems/AutomaticCategory" instance=ExtResource("2_2dtc0")]
|
[node name="BuySilverStar" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/AutomaticCategory" instance=ExtResource("2_2dtc0")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
item_name = "Silver star"
|
item_name = "Silver star"
|
||||||
item_description = "Create a silver coin when tapping!"
|
item_description = "Create a silver coin when tapping!"
|
||||||
item_cost_text = "??"
|
item_cost_text = "??"
|
||||||
has_unlocked = false
|
has_unlocked = false
|
||||||
|
|
||||||
[node name="PurchasableItemPadding" parent="Rows/Scrollable/ScrollableItems/AutomaticCategory" instance=ExtResource("3_4feaj")]
|
[node name="PurchasableItemPadding" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/AutomaticCategory" instance=ExtResource("3_4feaj")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
[node name="BuyGoldStar" parent="Rows/Scrollable/ScrollableItems/AutomaticCategory" instance=ExtResource("2_2dtc0")]
|
[node name="BuyGoldStar" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/AutomaticCategory" instance=ExtResource("2_2dtc0")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
item_name = "Gold star"
|
item_name = "Gold star"
|
||||||
item_description = "Create a gold coin when tapping!"
|
item_description = "Create a gold coin when tapping!"
|
||||||
item_cost_text = "??"
|
item_cost_text = "??"
|
||||||
has_unlocked = false
|
has_unlocked = false
|
||||||
|
|
||||||
[node name="PurchasableItemPadding2" parent="Rows/Scrollable/ScrollableItems/AutomaticCategory" instance=ExtResource("3_4feaj")]
|
[node name="PurchasableItemPadding2" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/AutomaticCategory" instance=ExtResource("3_4feaj")]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|
||||||
|
[node name="PaddedScrollableRight" type="Control" parent="Rows/PaddedScrollable"]
|
||||||
|
custom_minimum_size = Vector2(8, 0)
|
||||||
|
layout_mode = 2
|
||||||
|
size_flags_horizontal = 8
|
||||||
|
|
||||||
[connection signal="pressed" from="Rows/UpperButtons/ScoreButton" to="." method="_on_score_button_pressed"]
|
[connection signal="pressed" from="Rows/UpperButtons/ScoreButton" to="." method="_on_score_button_pressed"]
|
||||||
[connection signal="pressed" from="Rows/UpperButtons/DeleteButton" to="." method="_on_delete_button_pressed"]
|
[connection signal="pressed" from="Rows/UpperButtons/DeleteButton" to="." method="_on_delete_button_pressed"]
|
||||||
[connection signal="pressed" from="Rows/UpperButtons/BackButton" to="." method="_on_back_button_pressed"]
|
[connection signal="pressed" from="Rows/UpperButtons/BackButton" to="." method="_on_back_button_pressed"]
|
||||||
|
|
|
@ -53,3 +53,5 @@ func _do_spawn():
|
||||||
func _physics_process(_delta):
|
func _physics_process(_delta):
|
||||||
if buffer > 0:
|
if buffer > 0:
|
||||||
_do_spawn()
|
_do_spawn()
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue