Prechádzať zdrojové kódy

Take spawn rotation into account

DricomDragon 4 rokov pred
rodič
commit
1857910623
3 zmenil súbory, kde vykonal 4 pridanie a 2 odobranie
  1. 1 0
      Game.gd
  2. 3 1
      Player.gd
  3. 0 1
      Player.tscn

+ 1 - 0
Game.gd

@@ -59,6 +59,7 @@ func create_game():
 		player.turn_left_action = playerActionsLeft[k]
 		player.turn_right_action = playerActionsRight[k]
 		player.position = spawners[k].position
+		player.rotation = spawners[k].rotation
 		add_child(player)
 
 	# Delay start

+ 3 - 1
Player.gd

@@ -28,7 +28,7 @@ var posiy
 var dirx = 0
 var diry = 0
 
-export var dire = Direction.UP
+var dire
 var dire_delta = 0
 
 var target_pos
@@ -48,8 +48,10 @@ func _ready():
 	cell_size = int (grid.get_cell_size().x)
 	cell_half_size = cell_size / 2
 
+	# Adjust spawn situation
 	posix = int (position.x / 64)
 	posiy = int (position.y / 64)
+	dire = int((rotation_degrees + 45) / 90)
 
 	apply_turn()
 

+ 0 - 1
Player.tscn

@@ -4,7 +4,6 @@
 [ext_resource path="res://Resources/Images/player.png" type="Texture" id=2]
 [ext_resource path="res://CharTween.gd" type="Script" id=3]
 
-
 [sub_resource type="RectangleShape2D" id=1]
 extents = Vector2( 16, 16 )