fix: randomize start position in every game
This commit is contained in:
parent
77eb1bc578
commit
bf938e5307
@ -1,4 +1,6 @@
|
|||||||
|
using System;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
using Random = UnityEngine.Random;
|
||||||
|
|
||||||
public class PlayerController : MonoBehaviour
|
public class PlayerController : MonoBehaviour
|
||||||
{
|
{
|
||||||
@ -30,13 +32,14 @@ public class PlayerController : MonoBehaviour
|
|||||||
_initialPositionY = _startPosition.y;
|
_initialPositionY = _startPosition.y;
|
||||||
_initialGravityScale = _rigidbody.gravityScale;
|
_initialGravityScale = _rigidbody.gravityScale;
|
||||||
|
|
||||||
// Calculate start position (target position of ball spawning animation)
|
|
||||||
_startPosition = new Vector2(_startPosition.x + Random.Range(-_horisontalRadius, _horisontalRadius), _startPosition.y);
|
|
||||||
transform.position = new Vector2(_startPosition.x, transform.position.y);
|
|
||||||
|
|
||||||
GameStateManager.Instance.OnGameStateChange += OnGameStateChange;
|
GameStateManager.Instance.OnGameStateChange += OnGameStateChange;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void OnDestroy()
|
||||||
|
{
|
||||||
|
GameStateManager.Instance.OnGameStateChange -= OnGameStateChange;
|
||||||
|
}
|
||||||
|
|
||||||
public void OnTouch(Vector2 pointerPos)
|
public void OnTouch(Vector2 pointerPos)
|
||||||
{
|
{
|
||||||
// Get bounce direction based on the tap position
|
// Get bounce direction based on the tap position
|
||||||
@ -67,6 +70,9 @@ public class PlayerController : MonoBehaviour
|
|||||||
_rigidbody.simulated = false;
|
_rigidbody.simulated = false;
|
||||||
_rigidbody.velocity = Vector2.zero;
|
_rigidbody.velocity = Vector2.zero;
|
||||||
_rigidbody.angularVelocity = 0;
|
_rigidbody.angularVelocity = 0;
|
||||||
|
|
||||||
|
// Calculate start position (target position of ball spawning animation)
|
||||||
|
_startPosition = new Vector2(_startPosition.x + Random.Range(-_horisontalRadius, _horisontalRadius), _startPosition.y);
|
||||||
break;
|
break;
|
||||||
case GameState.Game:
|
case GameState.Game:
|
||||||
_rigidbody.simulated = true;
|
_rigidbody.simulated = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user