diff --git a/HackerBasic.ttf b/assets/HackerBasic.ttf similarity index 100% rename from HackerBasic.ttf rename to assets/HackerBasic.ttf diff --git a/HackerBasic.ttf.import b/assets/HackerBasic.ttf.import similarity index 70% rename from HackerBasic.ttf.import rename to assets/HackerBasic.ttf.import index e25d8b3..e55dcf4 100644 --- a/HackerBasic.ttf.import +++ b/assets/HackerBasic.ttf.import @@ -3,12 +3,12 @@ importer="font_data_dynamic" type="FontFile" uid="uid://dit6605nx68qb" -path="res://.godot/imported/HackerBasic.ttf-aa7eb7cf3d0776599b28827728f98419.fontdata" +path="res://.godot/imported/HackerBasic.ttf-8eba88aaa720fb0d822b18e4c7c49d6d.fontdata" [deps] -source_file="res://HackerBasic.ttf" -dest_files=["res://.godot/imported/HackerBasic.ttf-aa7eb7cf3d0776599b28827728f98419.fontdata"] +source_file="res://assets/HackerBasic.ttf" +dest_files=["res://.godot/imported/HackerBasic.ttf-8eba88aaa720fb0d822b18e4c7c49d6d.fontdata"] [params] diff --git a/minibasic.ttf b/assets/minibasic.ttf similarity index 100% rename from minibasic.ttf rename to assets/minibasic.ttf diff --git a/minibasic.ttf.import b/assets/minibasic.ttf.import similarity index 67% rename from minibasic.ttf.import rename to assets/minibasic.ttf.import index 59fc6f1..9350740 100644 --- a/minibasic.ttf.import +++ b/assets/minibasic.ttf.import @@ -3,12 +3,12 @@ importer="font_data_dynamic" type="FontFile" uid="uid://dr5efgewcuwmr" -path="res://.godot/imported/minibasic.ttf-153d0ea39bbb8ff049ab21eef9078644.fontdata" +path="res://.godot/imported/minibasic.ttf-7afc6d4348b6ab58ac6526814542a466.fontdata" [deps] -source_file="res://minibasic.ttf" -dest_files=["res://.godot/imported/minibasic.ttf-153d0ea39bbb8ff049ab21eef9078644.fontdata"] +source_file="res://assets/minibasic.ttf" +dest_files=["res://.godot/imported/minibasic.ttf-7afc6d4348b6ab58ac6526814542a466.fontdata"] [params] diff --git a/Area2D.gd b/scripts/Area2D.gd similarity index 100% rename from Area2D.gd rename to scripts/Area2D.gd diff --git a/main.gd b/scripts/main.gd similarity index 67% rename from main.gd rename to scripts/main.gd index 97d3696..2b7ff7e 100644 --- a/main.gd +++ b/scripts/main.gd @@ -4,9 +4,9 @@ extends Node2D # Called when the node enters the scene tree for the first time. func _ready(): await get_tree().create_timer(3).timeout - dial.typewrite("Oh what a wonderful day today!", load("res://assets/meow.wav"),2, false) + dial.typewrite("Oh what a wonderful day today!", load("res://sfx/meow.wav"),2, false) await dial.Done - dial.typewrite("I should do my chores!", load("res://assets/meow.wav"),2, true) + dial.typewrite("I should do my chores!", load("res://sfx/meow.wav"),2, true) await dial.Done $CharacterBody2D.moving = true diff --git a/plr.gd b/scripts/plr.gd similarity index 100% rename from plr.gd rename to scripts/plr.gd diff --git a/typewrite.gd b/scripts/typewrite.gd similarity index 100% rename from typewrite.gd rename to scripts/typewrite.gd diff --git a/assets/meow.wav b/sfx/meow.wav similarity index 100% rename from assets/meow.wav rename to sfx/meow.wav diff --git a/assets/meow.wav.import b/sfx/meow.wav.import similarity index 57% rename from assets/meow.wav.import rename to sfx/meow.wav.import index f6a0bae..e0572a2 100644 --- a/assets/meow.wav.import +++ b/sfx/meow.wav.import @@ -3,12 +3,12 @@ importer="wav" type="AudioStreamWAV" uid="uid://wc2udhbh21la" -path="res://.godot/imported/meow.wav-ab4f6e9438cd14a91feb98baed1a18bb.sample" +path="res://.godot/imported/meow.wav-833458903e9b26678199f68915b60caa.sample" [deps] -source_file="res://assets/meow.wav" -dest_files=["res://.godot/imported/meow.wav-ab4f6e9438cd14a91feb98baed1a18bb.sample"] +source_file="res://sfx/meow.wav" +dest_files=["res://.godot/imported/meow.wav-833458903e9b26678199f68915b60caa.sample"] [params] diff --git a/lines.tscn b/tscn/lines.tscn similarity index 100% rename from lines.tscn rename to tscn/lines.tscn diff --git a/main.tscn b/tscn/main.tscn similarity index 95% rename from main.tscn rename to tscn/main.tscn index 7938420..2fcc936 100644 --- a/main.tscn +++ b/tscn/main.tscn @@ -1,10 +1,10 @@ [gd_scene load_steps=9 format=3 uid="uid://bsndq7rws8lru"] -[ext_resource type="Script" path="res://main.gd" id="1_lgqqv"] -[ext_resource type="PackedScene" uid="uid://ceqnn4bkdnnkg" path="res://plr.tscn" id="1_wgp3w"] -[ext_resource type="PackedScene" uid="uid://cab0u1jewvqun" path="res://lines.tscn" id="2_s78l6"] +[ext_resource type="Script" path="res://scripts/main.gd" id="1_lgqqv"] +[ext_resource type="PackedScene" uid="uid://ceqnn4bkdnnkg" path="res://tscn/plr.tscn" id="1_wgp3w"] +[ext_resource type="PackedScene" uid="uid://cab0u1jewvqun" path="res://tscn/lines.tscn" id="2_s78l6"] [ext_resource type="Texture2D" uid="uid://qbyvdl153l58" path="res://assets/spritesheet01.png" id="3_umasy"] -[ext_resource type="Script" path="res://Area2D.gd" id="5_vkino"] +[ext_resource type="Script" path="res://scripts/Area2D.gd" id="5_vkino"] [sub_resource type="AtlasTexture" id="AtlasTexture_mfrv4"] atlas = ExtResource("3_umasy") diff --git a/plr.tscn b/tscn/plr.tscn similarity index 97% rename from plr.tscn rename to tscn/plr.tscn index 43f4ec0..3b1bafb 100644 --- a/plr.tscn +++ b/tscn/plr.tscn @@ -1,14 +1,14 @@ [gd_scene load_steps=17 format=3 uid="uid://ceqnn4bkdnnkg"] -[ext_resource type="Script" path="res://plr.gd" id="1_37nf0"] +[ext_resource type="Script" path="res://scripts/plr.gd" id="1_37nf0"] [ext_resource type="Texture2D" uid="uid://cw5k2tw74rt44" path="res://assets/plr/face.png" id="1_kh4l2"] [ext_resource type="Texture2D" uid="uid://vc4ntnaq4xo8" path="res://assets/plr/tail.png" id="2_26rkd"] [ext_resource type="Texture2D" uid="uid://bhoi16v2lge5s" path="res://assets/plr/head.png" id="2_ylo5j"] [ext_resource type="Texture2D" uid="uid://e61exatotusn" path="res://assets/plr/torso.png" id="3_llt4k"] [ext_resource type="Texture2D" uid="uid://b2wwc74rumj6b" path="res://assets/textbox.png" id="5_ljw5m"] -[ext_resource type="Script" path="res://typewrite.gd" id="6_bjl34"] -[ext_resource type="FontFile" uid="uid://dit6605nx68qb" path="res://HackerBasic.ttf" id="6_m1vy8"] -[ext_resource type="AudioStream" uid="uid://wc2udhbh21la" path="res://assets/meow.wav" id="9_kn63i"] +[ext_resource type="Script" path="res://scripts/typewrite.gd" id="6_bjl34"] +[ext_resource type="FontFile" uid="uid://dit6605nx68qb" path="res://assets/HackerBasic.ttf" id="6_m1vy8"] +[ext_resource type="AudioStream" uid="uid://wc2udhbh21la" path="res://sfx/meow.wav" id="9_kn63i"] [sub_resource type="Animation" id="Animation_kxab8"] length = 0.001 @@ -526,7 +526,7 @@ libraries = { "": SubResource("AnimationLibrary_8tlfi") } autoplay = "idle" -blend_times = [&"idle", &"vmove", 0.3, &"idle", &"walk", 0.3, &"vmove", &"idle", 1.0, &"vmove", &"walk", 0.3, &"walk", &"idle", 1.0, &"walk", &"vmove", 0.3] +blend_times = [&"idle", &"walk", 0.3, &"idle", &"vmove", 0.3, &"walk", &"idle", 1.0, &"walk", &"vmove", 0.3, &"vmove", &"idle", 1.0, &"vmove", &"walk", 0.3] [node name="CanvasLayer" type="CanvasLayer" parent="."] visible = false