"Gun shooting with raycast, Fire rate, Shooting sound and animation with cooldown and doesn't play when reloading, Ammo management and Reloading with r key, sound plays when R is pressed, Shooting effect and impact effect that destroys itself."
xxxxxxxxxx
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GunController : MonoBehaviour
{
public float fireRate = 0.1f;
public float range = 100f;
public int maxAmmo = 30;
public int currentAmmo;
public float reloadTime = 2f;
public AudioClip shootSound;
public AudioClip reloadSound;
public GameObject muzzleFlash;
public GameObject impactEffect;
public Animator animator;
private AudioSource audioSource;
private float nextFire;
private bool isReloading;