Sfoglia il codice sorgente

Share tileset ressource

DricomDragon 5 anni fa
parent
commit
acd501e094
5 ha cambiato i file con 72 aggiunte e 110 eliminazioni
  1. 8 4
      Game.gd
  2. 5 0
      Game.tscn
  3. 3 53
      Levels/Lab.tscn
  4. 3 53
      Levels/Square.tscn
  5. 53 0
      Resources/TileSetClassic.tres

+ 8 - 4
Game.gd

@@ -1,6 +1,7 @@
 extends Node2D
 
 onready var cam = $MainCamera
+onready var timer = $StartTimer
 
 var levelNames = ["res://Levels/Lab.tscn", "res://Levels/Square.tscn"]
 var levelScenes = []
@@ -21,9 +22,9 @@ func _unhandled_input(event):
 			var living = get_tree().get_nodes_in_group("living")
 			if !living.empty():
 				return
-		start()
+		create_game()
 
-func start():
+func create_game():
 	# Clear if required
 	if (get_tree().has_group("players")):
 		var players = get_tree().get_nodes_in_group("players")
@@ -52,7 +53,7 @@ func start():
 	# Create players
 	var player
 
-	for k in 3:
+	for k in 2:
 		player = playerScene.instance()
 		player.grid = levelCurrentNode
 		player.turn_left_action = playerActionsLeft[k]
@@ -60,5 +61,8 @@ func start():
 		player.position = spawners[k].position
 		add_child(player)
 
-	# TODO Timer
+	# Delay start
+	timer.start()
+
+func _on_game_start():
 	get_tree().call_group("players", "_on_game_start")

+ 5 - 0
Game.tscn

@@ -10,3 +10,8 @@ script = ExtResource( 3 )
 current = true
 smoothing_enabled = true
 script = ExtResource( 1 )
+
+[node name="StartTimer" type="Timer" parent="."]
+wait_time = 3.0
+one_shot = true
+[connection signal="timeout" from="StartTimer" to="." method="_on_game_start"]

File diff suppressed because it is too large
+ 3 - 53
Levels/Lab.tscn


File diff suppressed because it is too large
+ 3 - 53
Levels/Square.tscn


+ 53 - 0
Resources/TileSetClassic.tres

@@ -0,0 +1,53 @@
+[gd_resource type="TileSet" load_steps=4 format=2]
+
+[ext_resource path="res://basic.png" type="Texture" id=1]
+
+[sub_resource type="ConvexPolygonShape2D" id=1]
+points = PoolVector2Array( 0, 0, 64, 0, 64, 64, 0, 64 )
+
+[sub_resource type="ConvexPolygonShape2D" id=2]
+points = PoolVector2Array( 64, 64, 0, 64, 0, 0, 64, 0 )
+
+[resource]
+0/name = "basic.png 0"
+0/texture = ExtResource( 1 )
+0/tex_offset = Vector2( 0, 0 )
+0/modulate = Color( 1, 1, 1, 1 )
+0/region = Rect2( 0, 0, 64, 64 )
+0/tile_mode = 0
+0/occluder_offset = Vector2( 0, 0 )
+0/navigation_offset = Vector2( 0, 0 )
+0/shapes = [  ]
+0/z_index = 0
+1/name = "basic.png 1"
+1/texture = ExtResource( 1 )
+1/tex_offset = Vector2( 0, 0 )
+1/modulate = Color( 1, 1, 1, 1 )
+1/region = Rect2( 64, 0, 64, 64 )
+1/tile_mode = 0
+1/occluder_offset = Vector2( 0, 0 )
+1/navigation_offset = Vector2( 0, 0 )
+1/shapes = [ {
+"autotile_coord": Vector2( 0, 0 ),
+"one_way": false,
+"one_way_margin": 1.0,
+"shape": SubResource( 1 ),
+"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
+} ]
+1/z_index = 0
+2/name = "basic.png 2"
+2/texture = ExtResource( 1 )
+2/tex_offset = Vector2( 0, 0 )
+2/modulate = Color( 1, 1, 1, 1 )
+2/region = Rect2( 128, 0, 64, 64 )
+2/tile_mode = 0
+2/occluder_offset = Vector2( 0, 0 )
+2/navigation_offset = Vector2( 0, 0 )
+2/shapes = [ {
+"autotile_coord": Vector2( 0, 0 ),
+"one_way": false,
+"one_way_margin": 1.0,
+"shape": SubResource( 2 ),
+"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
+} ]
+2/z_index = 0