mirror of
https://github.com/RYGhub/the-cold-night.git
synced 2024-11-22 12:44:20 +00:00
🔧 Rename files so that they are categorized
This commit is contained in:
parent
639db9cf24
commit
a5aafc99b4
19 changed files with 28 additions and 29 deletions
|
@ -11,7 +11,7 @@ config_version=4
|
||||||
[application]
|
[application]
|
||||||
|
|
||||||
config/name="LD50"
|
config/name="LD50"
|
||||||
run/main_scene="res://src/Game.tscn"
|
run/main_scene="res://src/levels/Game.tscn"
|
||||||
|
|
||||||
[display]
|
[display]
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
[gd_scene load_steps=5 format=2]
|
[gd_scene load_steps=5 format=2]
|
||||||
|
|
||||||
[ext_resource path="res://src/Light.png" type="Texture" id=1]
|
[ext_resource path="res://src/mechanics/Light.png" type="Texture" id=1]
|
||||||
[ext_resource path="res://src/White.png" type="Texture" id=2]
|
[ext_resource path="res://src/mechanics/White.png" type="Texture" id=2]
|
||||||
[ext_resource path="res://src/Fire.gd" type="Script" id=3]
|
[ext_resource path="res://src/entities/Fire.gd" type="Script" id=3]
|
||||||
|
|
||||||
[sub_resource type="RectangleShape2D" id=1]
|
[sub_resource type="RectangleShape2D" id=1]
|
||||||
extents = Vector2( 16, 16 )
|
extents = Vector2( 16, 16 )
|
|
@ -1,15 +1,14 @@
|
||||||
[gd_scene load_steps=4 format=2]
|
[gd_scene load_steps=4 format=2]
|
||||||
|
|
||||||
[ext_resource path="res://src/White.png" type="Texture" id=1]
|
[ext_resource path="res://src/mechanics/White.png" type="Texture" id=1]
|
||||||
[ext_resource path="res://src/PlayerMovement.gd" type="Script" id=2]
|
[ext_resource path="res://src/entities/behaviours/PlayerMovement.tscn" type="PackedScene" id=2]
|
||||||
|
|
||||||
[sub_resource type="RectangleShape2D" id=1]
|
[sub_resource type="RectangleShape2D" id=1]
|
||||||
extents = Vector2( 16, 16 )
|
extents = Vector2( 16, 16 )
|
||||||
|
|
||||||
[node name="Player" type="KinematicBody2D"]
|
[node name="Player" type="KinematicBody2D"]
|
||||||
|
|
||||||
[node name="PlayerMovement" type="Node" parent="."]
|
[node name="PlayerMovement" parent="." instance=ExtResource( 2 )]
|
||||||
script = ExtResource( 2 )
|
|
||||||
|
|
||||||
[node name="Sprite" type="Sprite" parent="."]
|
[node name="Sprite" type="Sprite" parent="."]
|
||||||
texture = ExtResource( 1 )
|
texture = ExtResource( 1 )
|
|
@ -1,6 +1,6 @@
|
||||||
[gd_scene load_steps=2 format=2]
|
[gd_scene load_steps=2 format=2]
|
||||||
|
|
||||||
[ext_resource path="res://src/PlayerMovement.gd" type="Script" id=1]
|
[ext_resource path="res://src/entities/behaviours/PlayerMovement.gd" type="Script" id=1]
|
||||||
|
|
||||||
[node name="PlayerMovement" type="Node"]
|
[node name="PlayerMovement" type="Node"]
|
||||||
script = ExtResource( 1 )
|
script = ExtResource( 1 )
|
|
@ -1,9 +1,9 @@
|
||||||
[gd_scene load_steps=5 format=2]
|
[gd_scene load_steps=5 format=2]
|
||||||
|
|
||||||
[ext_resource path="res://src/Background.tscn" type="PackedScene" id=1]
|
[ext_resource path="res://src/mechanics/Background.tscn" type="PackedScene" id=1]
|
||||||
[ext_resource path="res://src/Darkness.tscn" type="PackedScene" id=2]
|
[ext_resource path="res://src/mechanics/Darkness.tscn" type="PackedScene" id=2]
|
||||||
[ext_resource path="res://src/Fire.tscn" type="PackedScene" id=3]
|
[ext_resource path="res://src/entities/Fire.tscn" type="PackedScene" id=3]
|
||||||
[ext_resource path="res://src/Player.tscn" type="PackedScene" id=4]
|
[ext_resource path="res://src/entities/Player.tscn" type="PackedScene" id=4]
|
||||||
|
|
||||||
[node name="Game" type="Node2D"]
|
[node name="Game" type="Node2D"]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[gd_scene load_steps=2 format=2]
|
[gd_scene load_steps=2 format=2]
|
||||||
|
|
||||||
[ext_resource path="res://src/MainMenu.gd" type="Script" id=1]
|
[ext_resource path="res://src/levels/MainMenu.gd" type="Script" id=1]
|
||||||
|
|
||||||
[node name="MainMenu" type="Node2D"]
|
[node name="MainMenu" type="Node2D"]
|
||||||
script = ExtResource( 1 )
|
script = ExtResource( 1 )
|
|
@ -1,8 +1,8 @@
|
||||||
[gd_scene load_steps=5 format=2]
|
[gd_scene load_steps=5 format=2]
|
||||||
|
|
||||||
[ext_resource path="res://src/Black.png" type="Texture" id=1]
|
[ext_resource path="res://src/mechanics/Black.png" type="Texture" id=1]
|
||||||
[ext_resource path="res://src/White.png" type="Texture" id=2]
|
[ext_resource path="res://src/mechanics/White.png" type="Texture" id=2]
|
||||||
[ext_resource path="res://src/GimpWood.png" type="Texture" id=3]
|
[ext_resource path="res://src/mechanics/GimpWood.png" type="Texture" id=3]
|
||||||
|
|
||||||
[sub_resource type="TileSet" id=1]
|
[sub_resource type="TileSet" id=1]
|
||||||
0/name = "Black.png 0"
|
0/name = "Black.png 0"
|
|
@ -2,15 +2,15 @@
|
||||||
|
|
||||||
importer="texture"
|
importer="texture"
|
||||||
type="StreamTexture"
|
type="StreamTexture"
|
||||||
path="res://.import/Black.png-22e975293195b4e333258a3cb447b5bd.stex"
|
path="res://.import/Black.png-1d7f7dfcb55e890586db64e8005bcd4d.stex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/Black.png"
|
source_file="res://src/mechanics/Black.png"
|
||||||
dest_files=[ "res://.import/Black.png-22e975293195b4e333258a3cb447b5bd.stex" ]
|
dest_files=[ "res://.import/Black.png-1d7f7dfcb55e890586db64e8005bcd4d.stex" ]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
|
@ -2,15 +2,15 @@
|
||||||
|
|
||||||
importer="texture"
|
importer="texture"
|
||||||
type="StreamTexture"
|
type="StreamTexture"
|
||||||
path="res://.import/GimpWood.png-2b0a5198ac300b953a13fbc53f931941.stex"
|
path="res://.import/GimpWood.png-4e41be77762f8e440af37a2253f0fe68.stex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/GimpWood.png"
|
source_file="res://src/mechanics/GimpWood.png"
|
||||||
dest_files=[ "res://.import/GimpWood.png-2b0a5198ac300b953a13fbc53f931941.stex" ]
|
dest_files=[ "res://.import/GimpWood.png-4e41be77762f8e440af37a2253f0fe68.stex" ]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
|
@ -2,15 +2,15 @@
|
||||||
|
|
||||||
importer="texture"
|
importer="texture"
|
||||||
type="StreamTexture"
|
type="StreamTexture"
|
||||||
path="res://.import/Light.png-c5939eb13f28497c5b088df274cb69ef.stex"
|
path="res://.import/Light.png-23403d245754c06f53def44e66bfe25d.stex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/Light.png"
|
source_file="res://src/mechanics/Light.png"
|
||||||
dest_files=[ "res://.import/Light.png-c5939eb13f28497c5b088df274cb69ef.stex" ]
|
dest_files=[ "res://.import/Light.png-23403d245754c06f53def44e66bfe25d.stex" ]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
|
@ -2,15 +2,15 @@
|
||||||
|
|
||||||
importer="texture"
|
importer="texture"
|
||||||
type="StreamTexture"
|
type="StreamTexture"
|
||||||
path="res://.import/White.png-11abf8da476fb8bc7f2f30d4f84a59c9.stex"
|
path="res://.import/White.png-f90595f9b068cd2719955f415819137c.stex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://src/White.png"
|
source_file="res://src/mechanics/White.png"
|
||||||
dest_files=[ "res://.import/White.png-11abf8da476fb8bc7f2f30d4f84a59c9.stex" ]
|
dest_files=[ "res://.import/White.png-f90595f9b068cd2719955f415819137c.stex" ]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
Loading…
Reference in a new issue