Fix the player roll initial position to left

This commit is contained in:
Sameer Rahmani 2021-03-13 21:58:04 +00:00
parent 2bb6012f83
commit 56b28dd764
1 changed files with 2 additions and 2 deletions

View File

@ -13,9 +13,9 @@ enum {
var state = MOVE
var velocity = Vector2.ZERO
# At the Player scense, player has to be faced to the right for this
# At the Player scense, player has to be faced to the left for this
# vector to be correct
var roll_vector = Vector2.RIGHT
var roll_vector = Vector2.LEFT
onready var animation_tree = $AnimationTree
onready var animation_state = animation_tree.get("parameters/playback")