瀏覽代碼

Regroup scenes and scripts in folders

DricomDragon 4 年之前
父節點
當前提交
18a514b3ed
共有 17 個文件被更改,包括 29 次插入17 次删除
  1. 2 1
      Levels/Atom.tscn
  2. 2 1
      Levels/Focus.tscn
  3. 2 1
      Levels/Lab.tscn
  4. 2 1
      Levels/Square.tscn
  5. 2 1
      Levels/template.tscn
  6. 8 5
      Game.tscn
  7. 2 1
      Hub.tscn
  8. 4 2
      Player.tscn
  9. 2 1
      Spawner.tscn
  10. 0 0
      Scripts/CharTween.gd
  11. 0 0
      Scripts/Game.gd
  12. 1 1
      Hub.gd
  13. 0 0
      Scripts/LevelSwap.gd
  14. 0 0
      Scripts/MainCamera.gd
  15. 0 0
      Scripts/Player.gd
  16. 0 0
      Scripts/Spawner.gd
  17. 2 2
      project.godot

+ 2 - 1
Levels/Atom.tscn

@@ -1,7 +1,8 @@
 [gd_scene load_steps=3 format=2]
 
 [ext_resource path="res://Resources/TileSetClassic.tres" type="TileSet" id=1]
-[ext_resource path="res://Spawner.tscn" type="PackedScene" id=2]
+[ext_resource path="res://Scenes/Spawner.tscn" type="PackedScene" id=2]
+
 
 [node name="Grid" type="TileMap"]
 tile_set = ExtResource( 1 )

+ 2 - 1
Levels/Focus.tscn

@@ -1,7 +1,8 @@
 [gd_scene load_steps=3 format=2]
 
 [ext_resource path="res://Resources/TileSetClassic.tres" type="TileSet" id=1]
-[ext_resource path="res://Spawner.tscn" type="PackedScene" id=2]
+[ext_resource path="res://Scenes/Spawner.tscn" type="PackedScene" id=2]
+
 
 [node name="Grid" type="TileMap"]
 tile_set = ExtResource( 1 )

+ 2 - 1
Levels/Lab.tscn

@@ -1,7 +1,8 @@
 [gd_scene load_steps=3 format=2]
 
 [ext_resource path="res://Resources/TileSetClassic.tres" type="TileSet" id=1]
-[ext_resource path="res://Spawner.tscn" type="PackedScene" id=2]
+[ext_resource path="res://Scenes/Spawner.tscn" type="PackedScene" id=2]
+
 
 [node name="Grid" type="TileMap"]
 tile_set = ExtResource( 1 )

+ 2 - 1
Levels/Square.tscn

@@ -1,7 +1,8 @@
 [gd_scene load_steps=3 format=2]
 
 [ext_resource path="res://Resources/TileSetClassic.tres" type="TileSet" id=1]
-[ext_resource path="res://Spawner.tscn" type="PackedScene" id=2]
+[ext_resource path="res://Scenes/Spawner.tscn" type="PackedScene" id=2]
+
 
 [node name="Grid" type="TileMap"]
 tile_set = ExtResource( 1 )

+ 2 - 1
Levels/template.tscn

@@ -1,7 +1,8 @@
 [gd_scene load_steps=3 format=2]
 
 [ext_resource path="res://Resources/TileSetClassic.tres" type="TileSet" id=1]
-[ext_resource path="res://Spawner.tscn" type="PackedScene" id=2]
+[ext_resource path="res://Scenes/Spawner.tscn" type="PackedScene" id=2]
+
 
 [node name="Grid" type="TileMap"]
 tile_set = ExtResource( 1 )

+ 8 - 5
Game.tscn

@@ -1,9 +1,12 @@
 [gd_scene load_steps=5 format=2]
 
-[ext_resource path="res://MainCamera.gd" type="Script" id=1]
-[ext_resource path="res://LevelSwap.gd" type="Script" id=2]
-[ext_resource path="res://Game.gd" type="Script" id=3]
-[ext_resource path="res://Hub.tscn" type="PackedScene" id=4]
+[ext_resource path="res://Scripts/MainCamera.gd" type="Script" id=1]
+[ext_resource path="res://Scripts/LevelSwap.gd" type="Script" id=2]
+[ext_resource path="res://Scripts/Game.gd" type="Script" id=3]
+[ext_resource path="res://Scenes/Hub.tscn" type="PackedScene" id=4]
+
+
+
 
 [node name="Game" type="Node2D"]
 script = ExtResource( 3 )
@@ -40,5 +43,5 @@ __meta__ = {
 
 [node name="LevelSwap" type="Tween" parent="."]
 script = ExtResource( 2 )
-[connection signal="timeout" from="StartTimer" to="Ui" method="hide"]
 [connection signal="timeout" from="StartTimer" to="." method="_on_start_game"]
+[connection signal="timeout" from="StartTimer" to="Ui" method="hide"]

+ 2 - 1
Hub.tscn

@@ -1,6 +1,7 @@
 [gd_scene load_steps=2 format=2]
 
-[ext_resource path="res://Hub.gd" type="Script" id=1]
+[ext_resource path="res://Scripts/Hub.gd" type="Script" id=1]
+
 
 [node name="Hub" type="Node2D"]
 script = ExtResource( 1 )

+ 4 - 2
Player.tscn

@@ -1,8 +1,10 @@
 [gd_scene load_steps=5 format=2]
 
-[ext_resource path="res://Player.gd" type="Script" id=1]
+[ext_resource path="res://Scripts/Player.gd" type="Script" id=1]
 [ext_resource path="res://Resources/Images/player.png" type="Texture" id=2]
-[ext_resource path="res://CharTween.gd" type="Script" id=3]
+[ext_resource path="res://Scripts/CharTween.gd" type="Script" id=3]
+
+
 
 [sub_resource type="RectangleShape2D" id=1]
 extents = Vector2( 16, 16 )

+ 2 - 1
Spawner.tscn

@@ -1,8 +1,9 @@
 [gd_scene load_steps=3 format=2]
 
-[ext_resource path="res://Spawner.gd" type="Script" id=1]
+[ext_resource path="res://Scripts/Spawner.gd" type="Script" id=1]
 [ext_resource path="res://Resources/Images/spawn.png" type="Texture" id=2]
 
+
 [node name="Spawn" type="Sprite" groups=[
 "spawn",
 ]]

CharTween.gd → Scripts/CharTween.gd


Game.gd → Scripts/Game.gd


+ 1 - 1
Hub.gd

@@ -20,7 +20,7 @@ export (Array, Color) var playerColors = [
 	Color.orange,
 ]
 
-var _playerScene = preload("res://Player.tscn")
+var _playerScene = preload("res://Scenes/Player.tscn")
 var _playerActionsLeft
 var _playerActionsRight
 

LevelSwap.gd → Scripts/LevelSwap.gd


MainCamera.gd → Scripts/MainCamera.gd


Player.gd → Scripts/Player.gd


Spawner.gd → Scripts/Spawner.gd


+ 2 - 2
project.godot

@@ -12,7 +12,7 @@ _global_script_classes=[ {
 "base": "Node2D",
 "class": "Hub",
 "language": "GDScript",
-"path": "res://Hub.gd"
+"path": "res://Scripts/Hub.gd"
 } ]
 _global_script_class_icons={
 "Hub": ""
@@ -22,7 +22,7 @@ _global_script_class_icons={
 
 config/name="MightyLinersReborn"
 config/description="Multiplayer game with never-stopping liners."
-run/main_scene="res://Game.tscn"
+run/main_scene="res://Scenes/Game.tscn"
 config/icon="res://icon.png"
 
 [display]