aha
This commit is contained in:
@ -0,0 +1,67 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace Mirror.Examples.PickupsDropsChilds
|
||||
{
|
||||
public class EquippedBat : MonoBehaviour, IEquipped
|
||||
{
|
||||
// Note: This example doesn't include animations or sounds for simplicity.
|
||||
// These are just here for illustration purposes...the implementation
|
||||
// methods could do something interesting like play a sound or animation.
|
||||
[Header("Components")]
|
||||
public Animator animator;
|
||||
public AudioSource audioSource;
|
||||
|
||||
[Header("Equipped Item")]
|
||||
[SerializeField]
|
||||
EquippedItemConfig _equippedItemConfig;
|
||||
|
||||
public EquippedItemConfig equippedItemConfig
|
||||
{
|
||||
get => _equippedItemConfig;
|
||||
set
|
||||
{
|
||||
Debug.Log($"{transform.root.name} EquippedItemConfig set from {_equippedItemConfig} to {value}", gameObject);
|
||||
_equippedItemConfig = value;
|
||||
}
|
||||
}
|
||||
|
||||
void Reset()
|
||||
{
|
||||
equippedItemConfig = new EquippedItemConfig { usages = 5, maxUsages = 5 };
|
||||
}
|
||||
|
||||
// Play appropriate animation or sound
|
||||
public void Use()
|
||||
{
|
||||
// Effectively unlimited uses
|
||||
if (equippedItemConfig.maxUsages == 0)
|
||||
{
|
||||
Debug.Log("Bat used");
|
||||
return;
|
||||
}
|
||||
|
||||
if (equippedItemConfig.usages > 0)
|
||||
Debug.Log("Bat used");
|
||||
else
|
||||
Debug.Log("Bat is out of uses");
|
||||
}
|
||||
|
||||
// Play appropriate animation or sound
|
||||
public void AddUsages(byte usages)
|
||||
{
|
||||
Debug.Log($"Bat added {usages} usages");
|
||||
}
|
||||
|
||||
// Play appropriate animation or sound
|
||||
public void ResetUsages()
|
||||
{
|
||||
Debug.Log("Bat reset");
|
||||
}
|
||||
|
||||
// Play appropriate animation or sound
|
||||
public void ResetUsages(byte usages)
|
||||
{
|
||||
Debug.Log($"Bat reset usages to {usages}");
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user