This commit is contained in:
pennyrigate 2025-07-17 23:20:13 -04:00
parent 97a97192de
commit 268b392a3b
9 changed files with 126 additions and 6 deletions

View file

@ -1,4 +1,8 @@
<<<<<<< HEAD
[gd_scene load_steps=36 format=2]
=======
[gd_scene load_steps=28 format=2]
>>>>>>> 15d8307 (tghe end)
[ext_resource path="res://objects/Camera2D.tscn" type="PackedScene" id=1]
[ext_resource path="res://maps/future/mountain_future.gd" type="Script" id=2]
@ -18,7 +22,11 @@
[ext_resource path="res://objects/enemy/roboturret.tscn" type="PackedScene" id=16]
[ext_resource path="res://objects/hud/hud.tscn" type="PackedScene" id=17]
[ext_resource path="res://objects/enemy/bat.tscn" type="PackedScene" id=18]
<<<<<<< HEAD
[ext_resource path="res://objects/respawn_point.tscn" type="PackedScene" id=19]
=======
[ext_resource path="res://audio/sounds/msx_ending.ogg" type="AudioStream" id=19]
>>>>>>> 15d8307 (tghe end)
[ext_resource path="res://objects/collectibles/shard.tscn" type="PackedScene" id=21]
[ext_resource path="res://tilesets/t_death.tres" type="TileSet" id=22]
[ext_resource path="res://tilesets/t_ladders.tres" type="TileSet" id=23]
@ -586,6 +594,13 @@ anims/liftoff = SubResource( 10 )
[node name="CanvasModulate" type="CanvasModulate" parent="."]
[node name="AnimationPlayer2" type="AnimationPlayer" parent="."]
[node name="EndingSound" type="AudioStreamPlayer" parent="."]
unique_name_in_owner = true
stream = ExtResource( 19 )
volume_db = -9.613
[connection signal="timeout" from="LightningTimer" to="." method="_spawn_lightning"]
[connection signal="tree_entered" from="Background/BackgroundMountain/Mountain" to="Background/BackgroundMountain/Mountain" method="set_visible" binds= [ true ]]
[connection signal="collected" from="Collectibles/Shards/Shard3" to="Enemies/TopMiddle/Mine" method="kill_for_real"]

11
maps/msx_ending.gd Normal file
View file

@ -0,0 +1,11 @@
extends Node2D
# Declare member variables here. Examples:
# var a = 2
# var b = "text"
# Called when the node enters the scene tree for the first time.
func _ready():
Fade.fade_in(2)

74
maps/msx_ending.tscn Normal file
View file

@ -0,0 +1,74 @@
[gd_scene load_steps=6 format=2]
[ext_resource path="res://graphics/hud/msx_ending.png" type="Texture" id=1]
[ext_resource path="res://ui/theme.tres" type="Theme" id=2]
[ext_resource path="res://ui/2ndpuberty_outline.tres" type="Material" id=3]
[ext_resource path="res://maps/msx_ending.gd" type="Script" id=4]
[sub_resource type="Animation" id=1]
resource_name = "GO"
length = 13.0
tracks/0/type = "value"
tracks/0/path = NodePath("End:rect_position")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/keys = {
"times": PoolRealArray( 0, 5.8, 6.8, 8.8 ),
"transitions": PoolRealArray( 1, 1, 1, 1 ),
"update": 0,
"values": [ Vector2( -39, 70 ), Vector2( -39, 70 ), Vector2( 81, 70 ), Vector2( 111, 70 ) ]
}
tracks/1/type = "value"
tracks/1/path = NodePath("The:rect_position")
tracks/1/interp = 1
tracks/1/loop_wrap = true
tracks/1/imported = false
tracks/1/enabled = true
tracks/1/keys = {
"times": PoolRealArray( 0, 5.8, 6.8, 8.8 ),
"transitions": PoolRealArray( 1, 1, 1, 1 ),
"update": 0,
"values": [ Vector2( 251, 70 ), Vector2( 251, 70 ), Vector2( 81, 70 ), Vector2( 51, 70 ) ]
}
[node name="msx_ending" type="Node2D"]
script = ExtResource( 4 )
[node name="Sprite" type="Sprite" parent="."]
position = Vector2( 128, 96 )
texture = ExtResource( 1 )
[node name="Label" type="Label" parent="."]
material = ExtResource( 3 )
margin_left = 10.0
margin_top = 16.0
margin_right = 143.0
margin_bottom = 39.0
theme = ExtResource( 2 )
text = "Wow...
What a crazy dream."
[node name="End" type="Label" parent="."]
material = ExtResource( 3 )
margin_left = -39.0
margin_top = 70.0
margin_right = 10.9994
margin_bottom = 93.0
theme = ExtResource( 2 )
text = "End "
[node name="The" type="Label" parent="."]
material = ExtResource( 3 )
margin_left = 251.0
margin_top = 70.0
margin_right = 301.0
margin_bottom = 93.0
theme = ExtResource( 2 )
text = "THE"
align = 2
[node name="AnimationPlayer" type="AnimationPlayer" parent="."]
autoplay = "GO"
anims/GO = SubResource( 1 )