HOTFIX: Doesnt brake anymore

This commit is contained in:
Jan Schuffenhauer
2020-04-20 21:38:29 +02:00
parent 9bca89ae1a
commit a759d0bcfb
3 changed files with 10 additions and 9 deletions

View File

@@ -55,9 +55,9 @@ func starting():
shownCards.append(load("res://Objects/Slime/SlimeCard.tscn").instance())
for i in range(3):
$Cards.add_child(shownCards[i])
shownCards[0].rect_position = [100,150]
shownCards[1].rect_position = Vector2(200,150)
shownCards[2].rect_position = Vector2(300,150)
shownCards[0].set_begin ( Vector2(100,150))
shownCards[1].set_begin ( Vector2(200,150))
shownCards[2].set_begin ( Vector2(300,150))
func _on_Button_pressed():