- Fantasy Warrior HUD 애셋 (Synty Studios) - Interface Core 라이브러리 - TextMesh Pro 패키지 - UI_HealthBar 프리팹
118 lines
3.2 KiB
C#
118 lines
3.2 KiB
C#
// Copyright (c) 2024 Synty Studios Limited. All rights reserved.
|
|
//
|
|
// Use of this software is subject to the terms and conditions of the Synty Studios End User Licence Agreement (EULA)
|
|
// available at: https://syntystore.com/pages/end-user-licence-agreement
|
|
//
|
|
// Sample scripts are included only as examples and are not intended as production-ready.
|
|
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace Synty.Interface.FantasyWarriorHUD.Samples
|
|
{
|
|
/// <summary>
|
|
/// Executes a list of animator actions and toggles a list of game objects on click.
|
|
/// </summary>
|
|
public class SampleButtonAction : MonoBehaviour
|
|
{
|
|
[Header("References")]
|
|
public Button button;
|
|
public List<GameObject> deactivateObjects;
|
|
public List<GameObject> toggleObjects;
|
|
public GameObject activateObject;
|
|
|
|
[Header("Parameters")]
|
|
public List<SampleAnimatorActionData> animatorActions;
|
|
public float activeTime = 1f;
|
|
public bool diableButtonWhenActive = false;
|
|
public bool runOnEnable;
|
|
public bool applyRandomRotationToActivateObject;
|
|
|
|
private void Awake()
|
|
{
|
|
if (button == null)
|
|
{
|
|
button = GetComponent<Button>();
|
|
}
|
|
|
|
if (button == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
button.onClick.AddListener(OnClick);
|
|
}
|
|
|
|
private void Reset()
|
|
{
|
|
button = GetComponent<Button>();
|
|
}
|
|
|
|
private void OnEnable()
|
|
{
|
|
if (runOnEnable)
|
|
{
|
|
OnClick();
|
|
}
|
|
}
|
|
|
|
private void OnClick()
|
|
{
|
|
foreach (GameObject deactivateObject in deactivateObjects)
|
|
{
|
|
if (deactivateObject != null)
|
|
{
|
|
deactivateObject.SetActive(false);
|
|
}
|
|
}
|
|
|
|
StopAllCoroutines();
|
|
StartCoroutine(C_ActivateObject());
|
|
|
|
foreach (GameObject toggleObject in toggleObjects)
|
|
{
|
|
if (toggleObject != null)
|
|
{
|
|
toggleObject.SetActive(!toggleObject.activeSelf);
|
|
}
|
|
}
|
|
|
|
foreach (SampleAnimatorActionData action in animatorActions)
|
|
{
|
|
action.Execute();
|
|
}
|
|
}
|
|
|
|
private IEnumerator C_ActivateObject()
|
|
{
|
|
if (diableButtonWhenActive && button != null)
|
|
{
|
|
button.interactable = false;
|
|
}
|
|
|
|
if (activateObject != null)
|
|
{
|
|
activateObject.SetActive(true);
|
|
if (applyRandomRotationToActivateObject)
|
|
{
|
|
activateObject.transform.localRotation = Quaternion.Euler(0, 0, Random.Range(0, 360));
|
|
}
|
|
}
|
|
|
|
yield return new WaitForSeconds(activeTime);
|
|
|
|
if (diableButtonWhenActive && button != null)
|
|
{
|
|
button.interactable = true;
|
|
}
|
|
|
|
if (activateObject != null)
|
|
{
|
|
activateObject.SetActive(false);
|
|
}
|
|
}
|
|
}
|
|
}
|