From d01f8f1ccec407f656ec3924f424bef66b88142f Mon Sep 17 00:00:00 2001 From: Jacob Janzen Date: Sat, 16 Nov 2024 17:18:30 -0600 Subject: timing --- scenes/microgames/fishin/fishin.gd | 3 ++- scenes/microgames/fishin/node_2d.tscn | 26 +++++++++++++------------- 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/scenes/microgames/fishin/fishin.gd b/scenes/microgames/fishin/fishin.gd index 7e1ae3c..44b60db 100644 --- a/scenes/microgames/fishin/fishin.gd +++ b/scenes/microgames/fishin/fishin.gd @@ -83,7 +83,8 @@ func _on_start_game_timeout() -> void: mash.visible = true mouse.visible = true - num_clicks = randi_range(5,20) + num_clicks = randi_range(5,21) + num_clicks = 21 # YOU LOSE diff --git a/scenes/microgames/fishin/node_2d.tscn b/scenes/microgames/fishin/node_2d.tscn index 94dbecb..9042568 100644 --- a/scenes/microgames/fishin/node_2d.tscn +++ b/scenes/microgames/fishin/node_2d.tscn @@ -11,9 +11,8 @@ [ext_resource type="Texture2D" uid="uid://d4kyih3ivlqqc" path="res://scenes/microgames/fishin/KibbbySad.png" id="9_blola"] [ext_resource type="Texture2D" uid="uid://dcvie7ynwdfui" path="res://scenes/microgames/fishin/KibbbyHappy.png" id="10_1il5r"] -[sub_resource type="Animation" id="Animation_fxbt5"] -resource_name = "mash" -loop_mode = 1 +[sub_resource type="Animation" id="Animation_bep6n"] +length = 0.001 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true @@ -21,14 +20,15 @@ tracks/0/path = NodePath("ShakePivot3/Mouse:texture") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { -"times": PackedFloat32Array(0.0333334, 0.466667), -"transitions": PackedFloat32Array(1, 1), +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), "update": 1, -"values": [ExtResource("6_7ls0g"), ExtResource("7_qpcgm")] +"values": [null] } -[sub_resource type="Animation" id="Animation_bep6n"] -length = 0.001 +[sub_resource type="Animation" id="Animation_fxbt5"] +resource_name = "mash" +loop_mode = 1 tracks/0/type = "value" tracks/0/imported = false tracks/0/enabled = true @@ -36,10 +36,10 @@ tracks/0/path = NodePath("ShakePivot3/Mouse:texture") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/keys = { -"times": PackedFloat32Array(0), -"transitions": PackedFloat32Array(1), +"times": PackedFloat32Array(0.0333334, 0.466667), +"transitions": PackedFloat32Array(1, 1), "update": 1, -"values": [null] +"values": [ExtResource("6_7ls0g"), ExtResource("7_qpcgm")] } [sub_resource type="AnimationLibrary" id="AnimationLibrary_7e725"] @@ -109,7 +109,7 @@ scale = Vector2(0.216276, 0.249769) autostart = true [node name="InGame" type="Timer" parent="."] -wait_time = 10.0 +wait_time = 3.0 [node name="SAD" type="Sprite2D" parent="."] visible = false @@ -122,7 +122,7 @@ position = Vector2(535, 300) texture = ExtResource("10_1il5r") [node name="SuccessFail" type="Timer" parent="."] -wait_time = 2.0 +wait_time = 3.0 [connection signal="button_up" from="TextureButton" to="." method="_on_texture_button_button_up"] [connection signal="timeout" from="StartGame" to="." method="_on_start_game_timeout"] -- cgit v1.2.3 From 4e7da00304de8bda55f7499186a51154241fa6f3 Mon Sep 17 00:00:00 2001 From: Zoey Kitt Date: Sat, 16 Nov 2024 15:27:53 -0600 Subject: Add Clippette to the main scene --- scenes/main.tscn | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/scenes/main.tscn b/scenes/main.tscn index c2c58b1..f6b1d59 100644 --- a/scenes/main.tscn +++ b/scenes/main.tscn @@ -1,9 +1,10 @@ -[gd_scene load_steps=5 format=3 uid="uid://d06d1vihf2oqp"] +[gd_scene load_steps=6 format=3 uid="uid://d06d1vihf2oqp"] [ext_resource type="Texture2D" uid="uid://b03ygtrwha22g" path="res://taytay/IMG_5199.jpeg" id="1_o2s48"] [ext_resource type="Script" path="res://scenes/main.gd" id="1_y7a0r"] [ext_resource type="AudioStream" uid="uid://wtoxhk0tf8ev" path="res://funny_sounds/Cat Meow - Minecraft Sound Effect (HD).mp3" id="3_gatxj"] [ext_resource type="PackedScene" uid="uid://g2veoq55y14i" path="res://scenes/stockticker/Stock Ticker.tscn" id="4_0ankd"] +[ext_resource type="PackedScene" uid="uid://bbg7lnak6kup7" path="res://scenes/LegallyDistinctPaperclipAssistant/window.tscn" id="5_6agvn"] [node name="Node2D2" type="Node2D"] script = ExtResource("1_y7a0r") @@ -26,11 +27,13 @@ autostart = true [node name="Meow" type="AudioStreamPlayer" parent="."] stream = ExtResource("3_gatxj") -[node name="Window" type="Window" parent="."] +[node name="Stock ticker window" type="Window" parent="."] size = Vector2i(1280, 720) -[node name="Stock ticker" parent="Window" instance=ExtResource("4_0ankd")] +[node name="Stock ticker" parent="Stock ticker window" instance=ExtResource("4_0ankd")] + +[node name="Clippette" parent="." instance=ExtResource("5_6agvn")] [connection signal="timeout" from="Microgame spawn timer" to="." method="_on_microgame_spawn_timer_timeout"] -[connection signal="buy" from="Window/Stock ticker" to="." method="_on_stock_ticker_buy"] -[connection signal="sell" from="Window/Stock ticker" to="." method="_on_stock_ticker_sell"] +[connection signal="buy" from="Stock ticker window/Stock ticker" to="." method="_on_stock_ticker_buy"] +[connection signal="sell" from="Stock ticker window/Stock ticker" to="." method="_on_stock_ticker_sell"] -- cgit v1.2.3 From 9961be9780edb82021e91d3b1ab75936ccec3c9c Mon Sep 17 00:00:00 2001 From: Zoey Kitt Date: Sat, 16 Nov 2024 15:51:49 -0600 Subject: Move the main window under Clipette's text box --- scenes/main.gd | 2 ++ scenes/main.tscn | 1 + 2 files changed, 3 insertions(+) diff --git a/scenes/main.gd b/scenes/main.gd index c984f43..1d9c503 100644 --- a/scenes/main.gd +++ b/scenes/main.gd @@ -6,6 +6,8 @@ var net_worth: Big func _ready() -> void: _on_microgame_spawn_timer_timeout() net_worth = Big.new(1000) + + get_window().position = Vector2(450, 360) # Called every frame. 'delta' is the elapsed time since the previous frame. diff --git a/scenes/main.tscn b/scenes/main.tscn index f6b1d59..8e96e8b 100644 --- a/scenes/main.tscn +++ b/scenes/main.tscn @@ -28,6 +28,7 @@ autostart = true stream = ExtResource("3_gatxj") [node name="Stock ticker window" type="Window" parent="."] +position = Vector2i(1000, 1000) size = Vector2i(1280, 720) [node name="Stock ticker" parent="Stock ticker window" instance=ExtResource("4_0ankd")] -- cgit v1.2.3 From 2a1cc7ed4628997e5e1b7299868d955ed2f7344d Mon Sep 17 00:00:00 2001 From: Zoey Kitt Date: Sat, 16 Nov 2024 15:58:14 -0600 Subject: Resize main window --- project.godot | 1 - scenes/main.gd | 5 +++-- scenes/main.tscn | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/project.godot b/project.godot index 84cd446..b52b5df 100644 --- a/project.godot +++ b/project.godot @@ -20,7 +20,6 @@ config/icon="res://icon.svg" window/size/viewport_width=1280 window/size/viewport_height=720 window/subwindows/embed_subwindows=false -window/stretch/mode="canvas_items" window/per_pixel_transparency/allowed=true [input] diff --git a/scenes/main.gd b/scenes/main.gd index 1d9c503..b20524b 100644 --- a/scenes/main.gd +++ b/scenes/main.gd @@ -7,8 +7,9 @@ func _ready() -> void: _on_microgame_spawn_timer_timeout() net_worth = Big.new(1000) - get_window().position = Vector2(450, 360) - + var window = get_window() + window.position = Vector2(450, 360) + window.size = Vector2(500, 300) # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: diff --git a/scenes/main.tscn b/scenes/main.tscn index 8e96e8b..e4c993c 100644 --- a/scenes/main.tscn +++ b/scenes/main.tscn @@ -28,7 +28,7 @@ autostart = true stream = ExtResource("3_gatxj") [node name="Stock ticker window" type="Window" parent="."] -position = Vector2i(1000, 1000) +position = Vector2i(1000, 538) size = Vector2i(1280, 720) [node name="Stock ticker" parent="Stock ticker window" instance=ExtResource("4_0ankd")] -- cgit v1.2.3 From b88ab51901dab2d1389d9407ff1216812b5c3d7f Mon Sep 17 00:00:00 2001 From: Zoey Kitt Date: Sat, 16 Nov 2024 16:19:17 -0600 Subject: Yeah that looks nice enough --- project.godot | 2 -- scenes/main.gd | 4 ++-- scenes/main.tscn | 19 +++++++++++++++++-- 3 files changed, 19 insertions(+), 6 deletions(-) diff --git a/project.godot b/project.godot index b52b5df..d7d2121 100644 --- a/project.godot +++ b/project.godot @@ -17,8 +17,6 @@ config/icon="res://icon.svg" [display] -window/size/viewport_width=1280 -window/size/viewport_height=720 window/subwindows/embed_subwindows=false window/per_pixel_transparency/allowed=true diff --git a/scenes/main.gd b/scenes/main.gd index b20524b..4f1c67f 100644 --- a/scenes/main.gd +++ b/scenes/main.gd @@ -9,7 +9,7 @@ func _ready() -> void: var window = get_window() window.position = Vector2(450, 360) - window.size = Vector2(500, 300) + window.size = Vector2(1319, 300) # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: @@ -17,7 +17,7 @@ func _process(delta: float) -> void: if Input.is_action_just_pressed("G"): $Meow.play() - $Score.text = "Net worth: $%s" % net_worth.toString() + $Score.text = "Net worth: \n$%s" % net_worth.toString() func _on_microgame_spawn_timer_timeout() -> void: diff --git a/scenes/main.tscn b/scenes/main.tscn index e4c993c..ec7091b 100644 --- a/scenes/main.tscn +++ b/scenes/main.tscn @@ -1,7 +1,9 @@ -[gd_scene load_steps=6 format=3 uid="uid://d06d1vihf2oqp"] +[gd_scene load_steps=8 format=3 uid="uid://d06d1vihf2oqp"] [ext_resource type="Texture2D" uid="uid://b03ygtrwha22g" path="res://taytay/IMG_5199.jpeg" id="1_o2s48"] [ext_resource type="Script" path="res://scenes/main.gd" id="1_y7a0r"] +[ext_resource type="Texture2D" uid="uid://voruypgyi77e" path="res://scenes/stockticker/UI-Background-Colour.png" id="2_fkfik"] +[ext_resource type="Theme" uid="uid://ve18rbkeiwti" path="res://UI/text.tres" id="3_d7ku7"] [ext_resource type="AudioStream" uid="uid://wtoxhk0tf8ev" path="res://funny_sounds/Cat Meow - Minecraft Sound Effect (HD).mp3" id="3_gatxj"] [ext_resource type="PackedScene" uid="uid://g2veoq55y14i" path="res://scenes/stockticker/Stock Ticker.tscn" id="4_0ankd"] [ext_resource type="PackedScene" uid="uid://bbg7lnak6kup7" path="res://scenes/LegallyDistinctPaperclipAssistant/window.tscn" id="5_6agvn"] @@ -9,7 +11,15 @@ [node name="Node2D2" type="Node2D"] script = ExtResource("1_y7a0r") +[node name="Background" type="Sprite2D" parent="."] +modulate = Color(0.796078, 0.796078, 0.796078, 1) +light_mask = 3 +scale = Vector2(1319, 300) +texture = ExtResource("2_fkfik") +centered = false + [node name="Sprite2D" type="Sprite2D" parent="."] +visible = false position = Vector2(636.307, 381.672) scale = Vector2(0.293995, 0.217148) texture = ExtResource("1_o2s48") @@ -18,7 +28,12 @@ texture = ExtResource("1_o2s48") offset_top = 2.0 offset_right = 83.0 offset_bottom = 25.0 -text = "Net worth: $" +theme = ExtResource("3_d7ku7") +theme_override_colors/font_color = Color(0, 0, 0, 1) +theme_override_font_sizes/font_size = 62 +text = "Net worth: + +$00000000000000000000" [node name="Microgame spawn timer" type="Timer" parent="."] wait_time = 10.0 -- cgit v1.2.3 From 332e3aced7c7d112d6ae04c7a075964f9b211ae8 Mon Sep 17 00:00:00 2001 From: Zoey Kitt Date: Sat, 16 Nov 2024 16:35:46 -0600 Subject: 3D rotating fish gif!!! --- ...-spinning-ezgif.com-gif-to-sprite-converter.png | Bin 0 -> 2135001 bytes ...ng-ezgif.com-gif-to-sprite-converter.png.import | 34 +++ scenes/main.tscn | 285 ++++++++++++++++++++- 3 files changed, 317 insertions(+), 2 deletions(-) create mode 100644 UI/fish-spinning-ezgif.com-gif-to-sprite-converter.png create mode 100644 UI/fish-spinning-ezgif.com-gif-to-sprite-converter.png.import diff --git a/UI/fish-spinning-ezgif.com-gif-to-sprite-converter.png b/UI/fish-spinning-ezgif.com-gif-to-sprite-converter.png new file mode 100644 index 0000000..cc58504 Binary files /dev/null and b/UI/fish-spinning-ezgif.com-gif-to-sprite-converter.png differ diff --git a/UI/fish-spinning-ezgif.com-gif-to-sprite-converter.png.import b/UI/fish-spinning-ezgif.com-gif-to-sprite-converter.png.import new file mode 100644 index 0000000..b721ec7 --- /dev/null +++ b/UI/fish-spinning-ezgif.com-gif-to-sprite-converter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dohsqvvi8y64h" +path="res://.godot/imported/fish-spinning-ezgif.com-gif-to-sprite-converter.png-9f4f03ed9d748b98ff7121419e844127.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://UI/fish-spinning-ezgif.com-gif-to-sprite-converter.png" +dest_files=["res://.godot/imported/fish-spinning-ezgif.com-gif-to-sprite-converter.png-9f4f03ed9d748b98ff7121419e844127.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 diff --git a/scenes/main.tscn b/scenes/main.tscn index ec7091b..a4504b9 100644 --- a/scenes/main.tscn +++ b/scenes/main.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=8 format=3 uid="uid://d06d1vihf2oqp"] +[gd_scene load_steps=48 format=3 uid="uid://d06d1vihf2oqp"] [ext_resource type="Texture2D" uid="uid://b03ygtrwha22g" path="res://taytay/IMG_5199.jpeg" id="1_o2s48"] [ext_resource type="Script" path="res://scenes/main.gd" id="1_y7a0r"] @@ -7,6 +7,281 @@ [ext_resource type="AudioStream" uid="uid://wtoxhk0tf8ev" path="res://funny_sounds/Cat Meow - Minecraft Sound Effect (HD).mp3" id="3_gatxj"] [ext_resource type="PackedScene" uid="uid://g2veoq55y14i" path="res://scenes/stockticker/Stock Ticker.tscn" id="4_0ankd"] [ext_resource type="PackedScene" uid="uid://bbg7lnak6kup7" path="res://scenes/LegallyDistinctPaperclipAssistant/window.tscn" id="5_6agvn"] +[ext_resource type="Texture2D" uid="uid://dohsqvvi8y64h" path="res://UI/fish-spinning-ezgif.com-gif-to-sprite-converter.png" id="8_oj2tc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyge7"] +atlas = ExtResource("8_oj2tc") +region = Rect2(1440, 540, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q361v"] +atlas = ExtResource("8_oj2tc") +region = Rect2(1920, 540, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xg08o"] +atlas = ExtResource("8_oj2tc") +region = Rect2(2400, 540, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wrxk"] +atlas = ExtResource("8_oj2tc") +region = Rect2(2880, 540, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqk41"] +atlas = ExtResource("8_oj2tc") +region = Rect2(3360, 540, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7jwr"] +atlas = ExtResource("8_oj2tc") +region = Rect2(3840, 540, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7b85l"] +atlas = ExtResource("8_oj2tc") +region = Rect2(4320, 540, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pm4lk"] +atlas = ExtResource("8_oj2tc") +region = Rect2(4800, 540, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gb3cd"] +atlas = ExtResource("8_oj2tc") +region = Rect2(5280, 540, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aujti"] +atlas = ExtResource("8_oj2tc") +region = Rect2(5760, 540, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kssee"] +atlas = ExtResource("8_oj2tc") +region = Rect2(6240, 540, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awsou"] +atlas = ExtResource("8_oj2tc") +region = Rect2(6720, 540, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqry7"] +atlas = ExtResource("8_oj2tc") +region = Rect2(7200, 540, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2edp"] +atlas = ExtResource("8_oj2tc") +region = Rect2(7680, 540, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06kk0"] +atlas = ExtResource("8_oj2tc") +region = Rect2(8160, 540, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyica"] +atlas = ExtResource("8_oj2tc") +region = Rect2(0, 810, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bl2fa"] +atlas = ExtResource("8_oj2tc") +region = Rect2(480, 810, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljnbe"] +atlas = ExtResource("8_oj2tc") +region = Rect2(960, 810, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48vwo"] +atlas = ExtResource("8_oj2tc") +region = Rect2(1440, 810, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ffer"] +atlas = ExtResource("8_oj2tc") +region = Rect2(1920, 810, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmw51"] +atlas = ExtResource("8_oj2tc") +region = Rect2(2400, 810, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h13o4"] +atlas = ExtResource("8_oj2tc") +region = Rect2(2880, 810, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5rca"] +atlas = ExtResource("8_oj2tc") +region = Rect2(3360, 810, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1w2n4"] +atlas = ExtResource("8_oj2tc") +region = Rect2(3840, 810, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4ovh"] +atlas = ExtResource("8_oj2tc") +region = Rect2(4320, 810, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ykvn"] +atlas = ExtResource("8_oj2tc") +region = Rect2(4800, 810, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2usu"] +atlas = ExtResource("8_oj2tc") +region = Rect2(5280, 810, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwxmp"] +atlas = ExtResource("8_oj2tc") +region = Rect2(5760, 810, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_muy25"] +atlas = ExtResource("8_oj2tc") +region = Rect2(6240, 810, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fnw4"] +atlas = ExtResource("8_oj2tc") +region = Rect2(6720, 810, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_teehr"] +atlas = ExtResource("8_oj2tc") +region = Rect2(7200, 810, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mflgh"] +atlas = ExtResource("8_oj2tc") +region = Rect2(7680, 810, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vy71g"] +atlas = ExtResource("8_oj2tc") +region = Rect2(8160, 810, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhs7i"] +atlas = ExtResource("8_oj2tc") +region = Rect2(0, 1080, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50ge1"] +atlas = ExtResource("8_oj2tc") +region = Rect2(480, 1080, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16ov1"] +atlas = ExtResource("8_oj2tc") +region = Rect2(960, 1080, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epju2"] +atlas = ExtResource("8_oj2tc") +region = Rect2(1440, 1080, 480, 270) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpon3"] +atlas = ExtResource("8_oj2tc") +region = Rect2(1920, 1080, 480, 270) + +[sub_resource type="SpriteFrames" id="SpriteFrames_ke268"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyge7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q361v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xg08o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wrxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqk41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7jwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7b85l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pm4lk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gb3cd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aujti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kssee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awsou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqry7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2edp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06kk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyica") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bl2fa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljnbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48vwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ffer") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmw51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h13o4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5rca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1w2n4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4ovh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ykvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2usu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwxmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_muy25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fnw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_teehr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mflgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vy71g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhs7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50ge1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16ov1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epju2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpon3") +}], +"loop": true, +"name": &"default", +"speed": 36.0 +}] [node name="Node2D2" type="Node2D"] script = ExtResource("1_y7a0r") @@ -43,13 +318,19 @@ autostart = true stream = ExtResource("3_gatxj") [node name="Stock ticker window" type="Window" parent="."] -position = Vector2i(1000, 538) +position = Vector2i(1000, 342) size = Vector2i(1280, 720) [node name="Stock ticker" parent="Stock ticker window" instance=ExtResource("4_0ankd")] [node name="Clippette" parent="." instance=ExtResource("5_6agvn")] +[node name="Rotating fish" type="AnimatedSprite2D" parent="."] +position = Vector2(1060, 149) +sprite_frames = SubResource("SpriteFrames_ke268") +autoplay = "default" +frame_progress = 0.387952 + [connection signal="timeout" from="Microgame spawn timer" to="." method="_on_microgame_spawn_timer_timeout"] [connection signal="buy" from="Stock ticker window/Stock ticker" to="." method="_on_stock_ticker_buy"] [connection signal="sell" from="Stock ticker window/Stock ticker" to="." method="_on_stock_ticker_sell"] -- cgit v1.2.3