UnityProjekt/Assets/Scripts/RocketScript.cs

54 lines
1.2 KiB
C#
Raw Normal View History

2020-11-06 20:20:17 +00:00
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class RocketScript : MonoBehaviour
{
private float _fired;
private Rigidbody2D _rb;
private byte _hitCount;
2020-11-19 23:48:50 +00:00
private Vector2 _forward;
public byte maxHits = 3;
2020-11-06 20:20:17 +00:00
// Start is called before the first frame update
void Start()
{
_rb = GetComponent<Rigidbody2D>();
}
private void OnEnable()
{
_fired = Time.fixedTime;
_hitCount = 0;
2020-11-19 23:48:50 +00:00
_forward = transform.right;
2020-11-06 20:20:17 +00:00
}
// Update is called once per frame
void FixedUpdate()
{
if(!gameObject.activeSelf) return;
if (Time.fixedTime - _fired > 3)
{
gameObject.SetActive(false);
_rb.velocity = Vector2.zero;
}
2020-11-19 23:48:50 +00:00
//_rb.AddForce(new Vector2(_goingRight ? 10 : -10, 0));
_rb.AddForce(10 * _forward);
2020-11-06 20:20:17 +00:00
}
2020-11-06 21:30:54 +00:00
private void OnCollisionEnter2D(Collision2D other)
{
if (_hitCount >= maxHits)
gameObject.SetActive(false);
2020-11-06 21:30:54 +00:00
_rb.velocity = Vector2.zero;
_hitCount++;
if (!other.gameObject.CompareTag("Enemy"))
return;
var ec = other.gameObject.GetComponent<EnemyController>();
ec.Hit();
2020-11-06 21:30:54 +00:00
}
2020-11-06 20:20:17 +00:00
}