You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
897 B

1 year ago
using System;
using Unity.Netcode;
using UnityEngine;
using Random = UnityEngine.Random;
namespace Game {
public class Ball : NetworkBehaviour {
1 year ago
public Rigidbody2D Rb { get; private set; }
1 year ago
1 year ago
private CircleCollider2D Collider { get; set; }
1 year ago
public float Radius {
get => transform.localScale.x * Collider.radius;
set => transform.localScale = new Vector3(1, 1, 1) * value * 2;
}
1 year ago
public bool IsAlive { get; private set; } = true;
1 year ago
private void OnEnable() {
1 year ago
Rb = GetComponent<Rigidbody2D>();
Collider = GetComponent<CircleCollider2D>();
1 year ago
}
private void Start() {
Rb.velocity = new Vector2(0, 25);
Rb.position = new Vector2(Random.Range(-2, 2), 0);
1 year ago
}
private void FixedUpdate() {
//TODO remove this and use triggers for death zone
if (Rb.position.y > BorderSize.Singleton.y2 || Rb.position.y < BorderSize.Singleton.y1) {
IsAlive = false;
}
1 year ago
}
}
}