Pracownia-Programowania-Pro.../Assets/Scripts/Others/UpgradeMoreBullets.cs
Polarjad 1ea616dd60 Added dungeon textures, added scenes, added UI
Enemy balance, added upgrades, added score, added menu
2021-01-25 22:40:51 +01:00

37 lines
718 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class UpgradeMoreBullets : MonoBehaviour
{
private PlayerShooting shooting;
private GameObject player;
void Start()
{
player = GameObject.FindWithTag("Player");
shooting = player.GetComponent<PlayerShooting>();
}
void Update()
{
if(shooting.firesecondbullet == true)
{
Destroy(gameObject);
}
}
void OnTriggerEnter2D(Collider2D other)
{
if (other.CompareTag("Player"))
{
Destroy(gameObject);
Debug.Log("Player upgrade taken");
shooting.firesecondbullet = true;
}
}
}