initial work

This commit is contained in:
husky 2025-01-29 12:00:28 -08:00
commit b75c5e9879
41 changed files with 842 additions and 0 deletions

BIN
audiowork/interm.ogg Normal file

Binary file not shown.

BIN
audiowork/loss.ogg Normal file

Binary file not shown.

Binary file not shown.

BIN
audiowork/win.ogg Normal file

Binary file not shown.

Binary file not shown.

2
petoriaware/.gitattributes vendored Normal file
View file

@ -0,0 +1,2 @@
# Normalize EOL for all files that Git considers text files.
* text=auto eol=lf

2
petoriaware/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
# Godot 4+ specific ignores
.godot/

BIN
petoriaware/MSMINCHO.TTF Normal file

Binary file not shown.

View file

@ -0,0 +1,33 @@
[remap]
importer="font_data_dynamic"
type="FontFile"
uid="uid://dsk6tm03m6x1m"
path="res://.godot/imported/MSMINCHO.TTF-93ce5ad7f99e3c1b6604f797df2165e9.fontdata"
[deps]
source_file="res://MSMINCHO.TTF"
dest_files=["res://.godot/imported/MSMINCHO.TTF-93ce5ad7f99e3c1b6604f797df2165e9.fontdata"]
[params]
Rendering=null
antialiasing=1
generate_mipmaps=false
multichannel_signed_distance_field=false
msdf_pixel_range=8
msdf_size=48
allow_system_fallback=true
force_autohinter=false
hinting=1
subpixel_positioning=1
oversampling=0.0
Fallbacks=null
fallbacks=[]
Compress=null
compress=true
preload=[]
language_support={}
script_support={}
opentype_features={}

1
petoriaware/icon.svg Normal file
View file

@ -0,0 +1 @@
<svg height="128" width="128" xmlns="http://www.w3.org/2000/svg"><rect x="2" y="2" width="124" height="124" rx="14" fill="#363d52" stroke="#212532" stroke-width="4"/><g transform="scale(.101) translate(122 122)"><g fill="#fff"><path d="M105 673v33q407 354 814 0v-33z"/><path d="m105 673 152 14q12 1 15 14l4 67 132 10 8-61q2-11 15-15h162q13 4 15 15l8 61 132-10 4-67q3-13 15-14l152-14V427q30-39 56-81-35-59-83-108-43 20-82 47-40-37-88-64 7-51 8-102-59-28-123-42-26 43-46 89-49-7-98 0-20-46-46-89-64 14-123 42 1 51 8 102-48 27-88 64-39-27-82-47-48 49-83 108 26 42 56 81zm0 33v39c0 276 813 276 814 0v-39l-134 12-5 69q-2 10-14 13l-162 11q-12 0-16-11l-10-65H446l-10 65q-4 11-16 11l-162-11q-12-3-14-13l-5-69z" fill="#478cbf"/><path d="M483 600c0 34 58 34 58 0v-86c0-34-58-34-58 0z"/><circle cx="725" cy="526" r="90"/><circle cx="299" cy="526" r="90"/></g><g fill="#414042"><circle cx="307" cy="532" r="60"/><circle cx="717" cy="532" r="60"/></g></g></svg>

After

(image error) Size: 949 B

View file

@ -0,0 +1,37 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://1din8piqjboc"
path="res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://icon.svg"
dest_files=["res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.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
svg/scale=1.0
editor/scale_with_editor_scale=false
editor/convert_colors_with_editor_theme=false

31
petoriaware/project.godot Normal file
View file

@ -0,0 +1,31 @@
; Engine configuration file.
; It's best edited using the editor UI and not directly,
; since the parameters that go here are not all obvious.
;
; Format:
; [section] ; section goes between []
; param=value ; assign values to parameters
config_version=5
[application]
config/name="PetoriaWare"
run/main_scene="res://scenes/intermission.tscn"
config/features=PackedStringArray("4.2", "GL Compatibility")
config/icon="res://icon.svg"
[display]
window/size/viewport_width=640
window/size/viewport_height=480
window/stretch/mode="viewport"
[dotnet]
project/assembly_name="PetoriaWare"
[rendering]
renderer/rendering_method="gl_compatibility"
renderer/rendering_method.mobile="gl_compatibility"

View file

@ -0,0 +1,44 @@
extends Node3D
@onready var camera = $"../../Camera3D"
@onready var aly_sprite = $Aly
@onready var music = $Music
@onready var explosion_timer = $ExplosionTimer
@onready var boom_sound = $Boom
@onready var win_sound = $Win
var loss_aly = load("res://sprites/aly1/golden_aly_shocked.jpg")
var win_aly = load("res://sprites/aly1/green_aly.jpg")
var loss_center = Vector3(0.0, -1.9, -10.0)
func mouse_pos_3d(pos):
var drop_plane = Plane(Vector3(0,0,1),-10)
return drop_plane.intersects_ray(camera.project_ray_origin(pos), camera.project_ray_normal(pos))
func _input(event):
if Input.is_mouse_button_pressed(MOUSE_BUTTON_LEFT):
if event is InputEventMouse:
var pos = mouse_pos_3d(event.position)
var dist = aly_sprite.position.distance_to(pos)
if dist < 1.0:
aly_sprite.position.x = pos.x
aly_sprite.position.y = pos.y
func _on_visibility_changed():
if self.visible:
music.play()
explosion_timer.start()
func _on_explosion_timer_timeout():
if aly_sprite.position.distance_to(loss_center) > 3.0:
# win
win_sound.play()
aly_sprite.texture = win_aly
else:
# loss
boom_sound.play()
aly_sprite.texture = loss_aly

View file

@ -0,0 +1,14 @@
extends Node3D
@export var top_anim: AnimationPlayer
@export var bot_anim: AnimationPlayer
@export var mg_aly1: Node3D
func _on_minigame_start():
mg_aly1.visible = true
func _on_minigame_transition():
top_anim.play("exit_up")
bot_anim.play("exit_down")

View file

@ -0,0 +1,302 @@
[gd_scene load_steps=22 format=3 uid="uid://dgcm6ac36bgj"]
[ext_resource type="AudioStream" uid="uid://dyeyhl1vyr6pm" path="res://sounds/intermission/interm.ogg" id="1_22ejf"]
[ext_resource type="Script" path="res://scenes/intermission.gd" id="1_k6vf8"]
[ext_resource type="PackedScene" uid="uid://bp37lt4qode6h" path="res://scenes/life.tscn" id="2_ke6ur"]
[ext_resource type="FontFile" uid="uid://dsk6tm03m6x1m" path="res://MSMINCHO.TTF" id="3_r5hoo"]
[ext_resource type="Script" path="res://scenes/Aly1.gd" id="4_lsny4"]
[ext_resource type="Texture2D" uid="uid://dl0gtfmfjs8qb" path="res://sprites/aly1/bg.png" id="4_sgqge"]
[ext_resource type="Texture2D" uid="uid://bmdoc8hegl7x8" path="res://sprites/aly1/circle.png" id="5_kgdpj"]
[ext_resource type="Texture2D" uid="uid://v5p0k07i2kqj" path="res://sprites/aly1/aly.png" id="6_rvlvp"]
[ext_resource type="AudioStream" uid="uid://ta0ko526ywqq" path="res://sounds/aly1/aly1.ogg" id="9_0rycy"]
[ext_resource type="AudioStream" uid="uid://b3wonv8atgaad" path="res://sounds/aly1/boom.ogg" id="10_pi5il"]
[ext_resource type="AudioStream" uid="uid://bil5ixiwd5en2" path="res://sounds/aly1/success.ogg" id="11_yjn6w"]
[sub_resource type="FontVariation" id="FontVariation_3jri1"]
base_font = ExtResource("3_r5hoo")
variation_face_index = 1
variation_embolden = 1.34
[sub_resource type="Animation" id="Animation_tqrm2"]
resource_name = "exit_up"
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:position")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 0.1),
"transitions": PackedFloat32Array(1, 1),
"update": 0,
"values": [Vector3(0, 0, 0), Vector3(0, 0.8, 0.86)]
}
[sub_resource type="Animation" id="Animation_dcm41"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:position")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Vector3(0, 0, 0)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_tln81"]
_data = {
"RESET": SubResource("Animation_dcm41"),
"exit_up": SubResource("Animation_tqrm2")
}
[sub_resource type="Animation" id="Animation_y862t"]
resource_name = "exit_down"
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:position")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 0.1),
"transitions": PackedFloat32Array(1, 1),
"update": 0,
"values": [Vector3(0, 0, 0), Vector3(0, -4.725, 1.8)]
}
[sub_resource type="Animation" id="Animation_2qgqh"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:position")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Vector3(0, 0, 0)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_5s4ow"]
_data = {
"RESET": SubResource("Animation_2qgqh"),
"exit_down": SubResource("Animation_y862t")
}
[sub_resource type="Animation" id="Animation_j4qja"]
resource_name = "text_show"
length = 4.0
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:position")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0.8, 1.1),
"transitions": PackedFloat32Array(1, 1),
"update": 0,
"values": [Vector3(0, 0.775, -3), Vector3(0.215, 0.775, -5)]
}
tracks/1/type = "value"
tracks/1/imported = false
tracks/1/enabled = true
tracks/1/path = NodePath(".:modulate")
tracks/1/interp = 1
tracks/1/loop_wrap = true
tracks/1/keys = {
"times": PackedFloat32Array(0.8, 1, 1.1, 3.1, 3.3),
"transitions": PackedFloat32Array(1, 1, 1, 1, 1),
"update": 0,
"values": [Color(1, 1, 1, 0), Color(1, 1, 1, 0), Color(1, 1, 1, 1), Color(1, 1, 1, 1), Color(1, 1, 1, 0)]
}
tracks/2/type = "value"
tracks/2/imported = false
tracks/2/enabled = true
tracks/2/path = NodePath(".:rotation")
tracks/2/interp = 1
tracks/2/loop_wrap = true
tracks/2/keys = {
"times": PackedFloat32Array(0.8, 1.1),
"transitions": PackedFloat32Array(1, 1),
"update": 0,
"values": [Vector3(0, 0, 0.0698132), Vector3(0, 0, 0)]
}
[sub_resource type="Animation" id="Animation_a3xu2"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:position")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Vector3(0, 0.775, -5)]
}
tracks/1/type = "value"
tracks/1/imported = false
tracks/1/enabled = true
tracks/1/path = NodePath(".:modulate")
tracks/1/interp = 1
tracks/1/loop_wrap = true
tracks/1/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Color(1, 1, 1, 1)]
}
tracks/2/type = "value"
tracks/2/imported = false
tracks/2/enabled = true
tracks/2/path = NodePath(".:rotation")
tracks/2/interp = 1
tracks/2/loop_wrap = true
tracks/2/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Vector3(0, 0, 0)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_fxdd7"]
_data = {
"RESET": SubResource("Animation_a3xu2"),
"text_show": SubResource("Animation_j4qja")
}
[node name="Intermission" type="Node3D" node_paths=PackedStringArray("top_anim", "bot_anim", "mg_aly1")]
script = ExtResource("1_k6vf8")
top_anim = NodePath("Intermission Top/AnimationPlayer")
bot_anim = NodePath("Intermission Bottom/AnimationPlayer")
mg_aly1 = NodePath("Minigame/Aly1")
[node name="MinigameTimer" type="Label3D" parent="."]
transform = Transform3D(5, 0, 0, 0, 5, 0, 0, 0, 5, -5.01, -3.558, -5)
billboard = 1
double_sided = false
texture_filter = 0
text = "ttttttttttttttttttttttttttttttttttt"
font = SubResource("FontVariation_3jri1")
font_size = 16
outline_size = 0
horizontal_alignment = 0
[node name="Camera3D" type="Camera3D" parent="."]
[node name="IntermissionMusic" type="AudioStreamPlayer" parent="."]
stream = ExtResource("1_22ejf")
autoplay = true
[node name="Intermission Top" type="Node3D" parent="."]
[node name="Number" type="Label3D" parent="Intermission Top"]
transform = Transform3D(20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 3, -5)
billboard = 1
double_sided = false
texture_filter = 0
text = "00"
font = SubResource("FontVariation_3jri1")
font_size = 16
outline_size = 0
[node name="AnimationPlayer" type="AnimationPlayer" parent="Intermission Top"]
libraries = {
"": SubResource("AnimationLibrary_tln81")
}
[node name="Intermission Bottom" type="Node3D" parent="."]
[node name="Lives" type="Node3D" parent="Intermission Bottom"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -10)
[node name="Life1" parent="Intermission Bottom/Lives" instance=ExtResource("2_ke6ur")]
transform = Transform3D(0.3, 0, 0, 0, 0.3, 0, 0, 0, 0.3, -6.44, -4.335, 0)
[node name="Life2" parent="Intermission Bottom/Lives" instance=ExtResource("2_ke6ur")]
transform = Transform3D(0.3, 0, 0, 0, 0.3, 0, 0, 0, 0.3, -2.205, -4.335, 0)
[node name="Life3" parent="Intermission Bottom/Lives" instance=ExtResource("2_ke6ur")]
transform = Transform3D(0.3, 0, 0, 0, 0.3, 0, 0, 0, 0.3, 2.05, -4.335, 0)
[node name="Life4" parent="Intermission Bottom/Lives" instance=ExtResource("2_ke6ur")]
transform = Transform3D(0.3, 0, 0, 0, 0.3, 0, 0, 0, 0.3, 6.44, -4.335, 0)
[node name="AnimationPlayer" type="AnimationPlayer" parent="Intermission Bottom"]
libraries = {
"": SubResource("AnimationLibrary_5s4ow")
}
[node name="Instruction" type="Label3D" parent="."]
transform = Transform3D(9.835, 0, 0, 0, 9.835, 0, 0, 0, 9.835, 0, 0.775, -5)
double_sided = false
texture_filter = 0
text = "Dodge the attack!"
font = SubResource("FontVariation_3jri1")
font_size = 16
outline_size = 0
[node name="AnimationPlayer" type="AnimationPlayer" parent="Instruction"]
libraries = {
"": SubResource("AnimationLibrary_fxdd7")
}
autoplay = "text_show"
[node name="Minigame" type="Node3D" parent="."]
[node name="Aly1" type="Node3D" parent="Minigame"]
visible = false
script = ExtResource("4_lsny4")
[node name="Background" type="Sprite3D" parent="Minigame/Aly1"]
transform = Transform3D(6.465, 0, 0, 0, 6.465, 0, 0, 0, 6.465, 0, 0, -20)
modulate = Color(0.544974, 0.544974, 0.544974, 1)
texture = ExtResource("4_sgqge")
[node name="Circle" type="Sprite3D" parent="Minigame/Aly1"]
transform = Transform3D(4.36, 0, 0, 0, 4.36, 0, 0, 0, 4.36, 0, -5.595, -19)
texture = ExtResource("5_kgdpj")
[node name="Aly" type="Sprite3D" parent="Minigame/Aly1"]
transform = Transform3D(0.295, 0, 0, 0, 0.295, 0, 0, 0, 0.295, 0, -1.9, -10)
double_sided = false
texture = ExtResource("6_rvlvp")
[node name="Music" type="AudioStreamPlayer" parent="Minigame/Aly1"]
stream = ExtResource("9_0rycy")
[node name="ExplosionTimer" type="Timer" parent="Minigame/Aly1"]
wait_time = 3.0
one_shot = true
[node name="Boom" type="AudioStreamPlayer" parent="Minigame/Aly1"]
stream = ExtResource("10_pi5il")
volume_db = -4.685
[node name="Win" type="AudioStreamPlayer" parent="Minigame/Aly1"]
stream = ExtResource("11_yjn6w")
volume_db = -8.432
[node name="MinigameTransitionTimer" type="Timer" parent="."]
wait_time = 1.5
one_shot = true
autostart = true
[node name="MinigameStartTimer" type="Timer" parent="."]
wait_time = 2.0
one_shot = true
autostart = true
[connection signal="visibility_changed" from="Minigame/Aly1" to="Minigame/Aly1" method="_on_visibility_changed"]
[connection signal="timeout" from="Minigame/Aly1/ExplosionTimer" to="Minigame/Aly1" method="_on_explosion_timer_timeout"]
[connection signal="timeout" from="MinigameTransitionTimer" to="." method="_on_minigame_transition"]
[connection signal="timeout" from="MinigameStartTimer" to="." method="_on_minigame_start"]

View file

@ -0,0 +1,54 @@
[gd_scene load_steps=5 format=3 uid="uid://bp37lt4qode6h"]
[ext_resource type="Texture2D" uid="uid://ciylr5xhjvf0d" path="res://sprites/intermission/notnight.png" id="1_ikc02"]
[sub_resource type="Animation" id="Animation_opdt8"]
length = 0.001
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:scale")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0),
"transitions": PackedFloat32Array(1),
"update": 0,
"values": [Vector3(0.3, 0.3, 0.3)]
}
[sub_resource type="Animation" id="Animation_i7e7u"]
resource_name = "bounce_1"
length = 0.5
loop_mode = 1
tracks/0/type = "value"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath(".:scale")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"times": PackedFloat32Array(0, 0.1, 0.3, 0.6),
"transitions": PackedFloat32Array(1, 1, 1, 1),
"update": 0,
"values": [Vector3(0.27, 0.345, 0.3), Vector3(0.34, 0.195, 0.3), Vector3(0.3, 0.3, 0.3), Vector3(0.27, 0.345, 0.3)]
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_u407n"]
_data = {
"RESET": SubResource("Animation_opdt8"),
"bounce_1": SubResource("Animation_i7e7u")
}
[node name="Life" type="Sprite3D"]
transform = Transform3D(0.3, 0, 0, 0, 0.3, 0, 0, 0, 0.3, 0, 0, 0)
billboard = 1
double_sided = false
texture_filter = 0
texture = ExtResource("1_ikc02")
[node name="AnimationPlayer" type="AnimationPlayer" parent="."]
libraries = {
"": SubResource("AnimationLibrary_u407n")
}
autoplay = "bounce_1"

Binary file not shown.

View file

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://ta0ko526ywqq"
path="res://.godot/imported/aly1.ogg-efdc59171615e86306fa710cd671b4b4.oggvorbisstr"
[deps]
source_file="res://sounds/aly1/aly1.ogg"
dest_files=["res://.godot/imported/aly1.ogg-efdc59171615e86306fa710cd671b4b4.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View file

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://b3wonv8atgaad"
path="res://.godot/imported/boom.ogg-cb7544a42f6cc3ca0d2f5558eefbe259.oggvorbisstr"
[deps]
source_file="res://sounds/aly1/boom.ogg"
dest_files=["res://.godot/imported/boom.ogg-cb7544a42f6cc3ca0d2f5558eefbe259.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View file

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://bil5ixiwd5en2"
path="res://.godot/imported/success.ogg-0a27ac89f775ad1ea10c0108d9afc856.oggvorbisstr"
[deps]
source_file="res://sounds/aly1/success.ogg"
dest_files=["res://.godot/imported/success.ogg-0a27ac89f775ad1ea10c0108d9afc856.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View file

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://dyeyhl1vyr6pm"
path="res://.godot/imported/interm.ogg-bca9f8179b49dcdbfd35f8787afb07be.oggvorbisstr"
[deps]
source_file="res://sounds/intermission/interm.ogg"
dest_files=["res://.godot/imported/interm.ogg-bca9f8179b49dcdbfd35f8787afb07be.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View file

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://b4q6kyj7y4itm"
path="res://.godot/imported/loss.ogg-6f2de8b215b2cf428b0087b23e99d907.oggvorbisstr"
[deps]
source_file="res://sounds/intermission/loss.ogg"
dest_files=["res://.godot/imported/loss.ogg-6f2de8b215b2cf428b0087b23e99d907.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View file

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://bvdev2ywsst2v"
path="res://.godot/imported/win.ogg-b2e7217a6708dcaaae1a6aec74389309.oggvorbisstr"
[deps]
source_file="res://sounds/intermission/win.ogg"
dest_files=["res://.godot/imported/win.ogg-b2e7217a6708dcaaae1a6aec74389309.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

After

(image error) Size: 762 KiB

View file

@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://v5p0k07i2kqj"
path.s3tc="res://.godot/imported/aly.png-5ff991e4880dceb46e915697f2a39d94.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://sprites/aly1/aly.png"
dest_files=["res://.godot/imported/aly.png-5ff991e4880dceb46e915697f2a39d94.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
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=0

Binary file not shown.

After

(image error) Size: 481 KiB

View file

@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dl0gtfmfjs8qb"
path.s3tc="res://.godot/imported/bg.png-6bb9945963d5104337e87e9e814163b2.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://sprites/aly1/bg.png"
dest_files=["res://.godot/imported/bg.png-6bb9945963d5104337e87e9e814163b2.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
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=0

Binary file not shown.

After

(image error) Size: 26 KiB

View file

@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bmdoc8hegl7x8"
path.s3tc="res://.godot/imported/circle.png-1a902a5b747948ed5d59ae492bb76aeb.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://sprites/aly1/circle.png"
dest_files=["res://.godot/imported/circle.png-1a902a5b747948ed5d59ae492bb76aeb.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
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=0

Binary file not shown.

After

(image error) Size: 197 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://co8s7ni86orio"
path="res://.godot/imported/golden_aly_shocked.jpg-224e296d0060c5b2ce2d66590e4cafa0.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/aly1/golden_aly_shocked.jpg"
dest_files=["res://.godot/imported/golden_aly_shocked.jpg-224e296d0060c5b2ce2d66590e4cafa0.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

Binary file not shown.

After

(image error) Size: 196 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b2x5736m5m01a"
path="res://.godot/imported/green_aly.jpg-2bad3b261bf76c0bd0dca879ed73d5de.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/aly1/green_aly.jpg"
dest_files=["res://.godot/imported/green_aly.jpg-2bad3b261bf76c0bd0dca879ed73d5de.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

Binary file not shown.

After

(image error) Size: 671 KiB

View file

@ -0,0 +1,35 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ciylr5xhjvf0d"
path.s3tc="res://.godot/imported/notnight.png-872eb257b1c9c78fe2cbfb0cd19b472d.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}
[deps]
source_file="res://sprites/intermission/notnight.png"
dest_files=["res://.godot/imported/notnight.png-872eb257b1c9c78fe2cbfb0cd19b472d.s3tc.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
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=0