You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.7 KiB
C#
76 lines
1.7 KiB
C#
2 months ago
|
using D2D;
|
||
|
using DG.Tweening;
|
||
|
using Sirenix.OdinInspector;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
using static D2D.Utilities.CommonGameplayFacade;
|
||
|
|
||
|
public class RadialWeapon : MonoBehaviour
|
||
|
{
|
||
|
[SerializeField] private GameObject radialWeaponPrefab;
|
||
|
[SerializeField] private FormationComponent formation;
|
||
|
|
||
|
private List<GameObject> weapons = new List<GameObject>();
|
||
|
|
||
|
private bool isEnabled;
|
||
|
|
||
|
private float timer;
|
||
|
|
||
|
private Tween scaleTween;
|
||
|
|
||
|
private void Awake()
|
||
|
{
|
||
|
_radialWeapon = this;
|
||
|
}
|
||
|
|
||
|
private void Update()
|
||
|
{
|
||
|
if (timer <= Time.time)
|
||
|
{
|
||
|
if (isEnabled)
|
||
|
{
|
||
|
EnableWeapon(false);
|
||
|
|
||
|
timer = Time.time + _gameData.radialWeaponCooldown;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
EnableWeapon(true);
|
||
|
|
||
|
timer = Time.time + _gameData.radialWeaponDuration;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
[Button]
|
||
|
public void AddWeapon()
|
||
|
{
|
||
|
scaleTween.KillTo0();
|
||
|
scaleTween = transform.DOScale(1, 0.5f);
|
||
|
|
||
|
var weaponGO = Instantiate(radialWeaponPrefab, transform);
|
||
|
weapons.Add(weaponGO);
|
||
|
formation.PlaceAdditionalPointsInFormation(2f, weapons.Count);
|
||
|
|
||
|
for (int i = 0; i < weapons.Count; i++)
|
||
|
{
|
||
|
GameObject weapon = weapons[i];
|
||
|
|
||
|
weapon.transform.localPosition = formation.FormationPoints[i].transform.localPosition;
|
||
|
}
|
||
|
|
||
|
if (weapons.Count == 1)
|
||
|
{
|
||
|
AddWeapon();
|
||
|
}
|
||
|
}
|
||
|
private void EnableWeapon(bool enable)
|
||
|
{
|
||
|
scaleTween.KillTo0();
|
||
|
|
||
|
scaleTween = transform.DOScale(enable ? 1 : 0, 0.5f);
|
||
|
isEnabled = enable;
|
||
|
}
|
||
|
}
|