mirror of
https://github.com/DerTyp7/defrain-shooter-unity.git
synced 2025-10-29 20:52:10 +01:00
77 lines
1.9 KiB
C#
77 lines
1.9 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using Mirror;
|
|
|
|
public class Shoot : NetworkBehaviour
|
|
{
|
|
[SerializeField] GameObject muzzle;
|
|
[SerializeField] GameObject weaponHolder;
|
|
private Weapon weapon;
|
|
|
|
Ammunition ammunition;
|
|
|
|
private void Start()
|
|
{
|
|
weapon = weaponHolder.GetComponent<Weapon>();
|
|
}
|
|
|
|
private void Update()
|
|
{
|
|
if (isLocalPlayer)
|
|
{
|
|
if (Input.GetButton("Fire"))
|
|
{
|
|
CmdFireBullet();
|
|
}
|
|
if (Input.GetButton("Reload"))
|
|
{
|
|
CmdReloadWeapon();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
[Command]
|
|
private void CmdReloadWeapon()
|
|
{
|
|
if (GetComponent<Ammunition>() != null && weapon.AllowAction)
|
|
{
|
|
GetComponent<Ammunition>().reloadWeapon(weapon);
|
|
}
|
|
}
|
|
|
|
[Command]
|
|
// This code will be executed on the Server.
|
|
private void CmdFireBullet()
|
|
{
|
|
if (weapon.AllowAction)
|
|
{
|
|
if (Physics.Raycast(muzzle.transform.position, muzzle.transform.forward, out RaycastHit hit) && weapon.CurrentAmmunition > 0)
|
|
{
|
|
Debug.DrawLine(muzzle.transform.position, hit.point);
|
|
Debug.Log("Geshooted BITCH");
|
|
if (hit.transform.gameObject.GetComponent<Player>() != null)
|
|
{
|
|
Debug.Log("GETROFFEN------------------");
|
|
hit.transform.gameObject.GetComponent<Player>().RemoveHealth(20);
|
|
}
|
|
}
|
|
if (GetComponent<Ammunition>() != null)
|
|
{
|
|
GetComponent<Ammunition>().subtractAmmunition(weapon);
|
|
}
|
|
StartCoroutine(fireRate());
|
|
}
|
|
|
|
}
|
|
|
|
IEnumerator fireRate()
|
|
{
|
|
weapon.AllowAction = false;
|
|
yield return new WaitForSeconds(weapon.Firerate);
|
|
weapon.AllowAction = true;
|
|
}
|
|
|
|
}
|