Petition-to-the-Gods-V3/Assets/Mirror/Examples/Billiards/Ball/RedBall.cs
2025-11-15 08:01:59 +08:00

16 lines
358 B
C#

using UnityEngine;
namespace Mirror.Examples.Billiards
{
public class RedBall : NetworkBehaviour
{
// destroy when entering a pocket.
// there's only one trigger in the scene (the pocket).
[ServerCallback]
void OnTriggerEnter(Collider other)
{
NetworkServer.Destroy(gameObject);
}
}
}