made some changes :D
This commit is contained in:
parent
5f89fbc891
commit
0006f02a0f
16 changed files with 131 additions and 20 deletions
BIN
graphics/lore/blue_ray_cavern.png
Normal file
BIN
graphics/lore/blue_ray_cavern.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 412 B |
35
graphics/lore/blue_ray_cavern.png.import
Normal file
35
graphics/lore/blue_ray_cavern.png.import
Normal file
|
@ -0,0 +1,35 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/blue_ray_cavern.png-0dd2d74f57c9b34a7254592f4a4c18d7.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://graphics/lore/blue_ray_cavern.png"
|
||||
dest_files=[ "res://.import/blue_ray_cavern.png-0dd2d74f57c9b34a7254592f4a4c18d7.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=false
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
process/normal_map_invert_y=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
BIN
graphics/lore/shady_canopy.png
Normal file
BIN
graphics/lore/shady_canopy.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 455 B |
35
graphics/lore/shady_canopy.png.import
Normal file
35
graphics/lore/shady_canopy.png.import
Normal file
|
@ -0,0 +1,35 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/shady_canopy.png-e3860504d1d7ce41398bbe44abadb9b5.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://graphics/lore/shady_canopy.png"
|
||||
dest_files=[ "res://.import/shady_canopy.png-e3860504d1d7ce41398bbe44abadb9b5.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=false
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
process/normal_map_invert_y=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
Binary file not shown.
Before Width: | Height: | Size: 430 B After Width: | Height: | Size: 417 B |
File diff suppressed because one or more lines are too long
|
@ -95,7 +95,6 @@ tracks/3/keys = {
|
|||
[node name="Skelarcher" type="Node2D" groups=["enemy"]]
|
||||
script = ExtResource( 4 )
|
||||
blood = false
|
||||
shoot_time = 3.0
|
||||
|
||||
[node name="Sprite" type="Sprite" parent="."]
|
||||
material = SubResource( 18 )
|
||||
|
|
|
@ -16,7 +16,7 @@ func _ready():
|
|||
scale.y = 1
|
||||
#Label
|
||||
label.visible = true
|
||||
label.set_text(str(cost))
|
||||
label.set_text("¶" + str(cost))
|
||||
label.rect_position.y = scale.y / 2 + label_offset.y
|
||||
|
||||
func _physics_process(delta):
|
||||
|
|
|
@ -115,7 +115,7 @@ margin_top = -15.0
|
|||
margin_right = 22.0
|
||||
margin_bottom = 5.0
|
||||
theme = ExtResource( 3 )
|
||||
text = "00"
|
||||
text = "¶00"
|
||||
align = 1
|
||||
|
||||
[connection signal="animation_finished" from="AnimationPlayer" to="." method="_on_AnimationPlayer_animation_finished"]
|
||||
|
|
|
@ -7,7 +7,7 @@ onready var map = get_owner()
|
|||
|
||||
func _ready():
|
||||
anims.play("closed")
|
||||
label.text = str(cost)
|
||||
label.text = "¶" + str(cost)
|
||||
|
||||
|
||||
func _physics_process(delta):
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=9 format=2]
|
||||
[gd_scene load_steps=10 format=2]
|
||||
|
||||
[ext_resource path="res://ui/theme.tres" type="Theme" id=1]
|
||||
[ext_resource path="res://objects/environment/exit/exit.gd" type="Script" id=2]
|
||||
[ext_resource path="res://graphics/exit/exit.png" type="Texture" id=3]
|
||||
[ext_resource path="res://shaders/1px_border.gdshader" type="Shader" id=4]
|
||||
[ext_resource path="res://ui/2ndpuberty_outline.tres" type="Material" id=5]
|
||||
|
||||
[sub_resource type="ShaderMaterial" id=1]
|
||||
shader = ExtResource( 4 )
|
||||
|
@ -122,13 +123,13 @@ z_index = -1
|
|||
script = ExtResource( 2 )
|
||||
|
||||
[node name="Label" type="Label" parent="."]
|
||||
visible = false
|
||||
margin_left = -7.0
|
||||
material = ExtResource( 5 )
|
||||
margin_left = -10.0
|
||||
margin_top = -15.0
|
||||
margin_right = 33.0
|
||||
margin_right = 30.0
|
||||
margin_bottom = 5.0
|
||||
theme = ExtResource( 1 )
|
||||
text = "22"
|
||||
text = "¶22"
|
||||
|
||||
[node name="Sprite" type="Sprite" parent="."]
|
||||
material = SubResource( 1 )
|
||||
|
|
19
objects/lore/canopy/shady_canopy.tscn
Normal file
19
objects/lore/canopy/shady_canopy.tscn
Normal file
|
@ -0,0 +1,19 @@
|
|||
[gd_scene load_steps=3 format=2]
|
||||
|
||||
[ext_resource path="res://graphics/lore/shady_canopy.png" type="Texture" id=1]
|
||||
[ext_resource path="res://objects/lore/lore.tscn" type="PackedScene" id=2]
|
||||
|
||||
[node name="Lore" instance=ExtResource( 2 )]
|
||||
|
||||
[node name="TextureRect" parent="Panel" index="0"]
|
||||
texture = ExtResource( 1 )
|
||||
|
||||
[node name="Control" parent="." index="1"]
|
||||
margin_top = 49.0
|
||||
margin_bottom = 143.0
|
||||
|
||||
[node name="Label" parent="Control" index="0"]
|
||||
margin_top = 3.0
|
||||
margin_bottom = 91.0
|
||||
text = "Shady Canopy:
|
||||
A heavily wooded forest connected to verdant hills. people used to live here to hide from fami, but after he poisoned the water its become too dangerous."
|
21
objects/lore/station/famicop.tscn
Normal file
21
objects/lore/station/famicop.tscn
Normal file
|
@ -0,0 +1,21 @@
|
|||
[gd_scene load_steps=5 format=2]
|
||||
|
||||
[ext_resource path="res://shaders/1px_border.gdshader" type="Shader" id=1]
|
||||
[ext_resource path="res://objects/lore/lore.tscn" type="PackedScene" id=2]
|
||||
[ext_resource path="res://graphics/enemy/cop/cop_shoot.png" type="Texture" id=3]
|
||||
|
||||
[sub_resource type="ShaderMaterial" id=1]
|
||||
shader = ExtResource( 1 )
|
||||
shader_param/border_color = Color( 0, 0, 0, 1 )
|
||||
shader_param/border_corners = true
|
||||
|
||||
[node name="Lore" instance=ExtResource( 2 )]
|
||||
|
||||
[node name="TextureRect" parent="Panel" index="0"]
|
||||
material = SubResource( 1 )
|
||||
texture = ExtResource( 3 )
|
||||
|
||||
[node name="Label" parent="Control" index="0"]
|
||||
margin_top = 15.0
|
||||
margin_bottom = 25.0
|
||||
text = "Famicop:"
|
|
@ -303,6 +303,7 @@ pointing/emulate_touch_from_mouse=true
|
|||
2d_physics/layer_5="particles"
|
||||
2d_physics/layer_6="death"
|
||||
2d_physics/layer_7="ladder"
|
||||
2d_physics/layer_8="player"
|
||||
|
||||
[physics]
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[gd_resource type="Theme" load_steps=2 format=2]
|
||||
|
||||
[ext_resource path="res://ui/2ndpuberty_no_dropshadow.fnt" type="BitmapFont" id=1]
|
||||
[ext_resource path="res://ui/2ndpuberty_scholar_no_dropshadow.fnt" type="BitmapFont" id=1]
|
||||
|
||||
[resource]
|
||||
default_font = ExtResource( 1 )
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[gd_resource type="Theme" load_steps=15 format=2]
|
||||
|
||||
[ext_resource path="res://ui/2ndpuberty.fnt" type="BitmapFont" id=1]
|
||||
[ext_resource path="res://ui/2ndpuberty_scholar_no_dropshadow.fnt" type="BitmapFont" id=1]
|
||||
[ext_resource path="res://graphics/hud/hslider_slider.png" type="Texture" id=2]
|
||||
[ext_resource path="res://graphics/hud/hslider_grabber.png" type="Texture" id=3]
|
||||
[ext_resource path="res://graphics/hud/hslider_grabber_focused.png" type="Texture" id=4]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue