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.
27 lines
796 B
C#
27 lines
796 B
C#
4 days ago
|
using System;
|
||
|
using Unity.Netcode;
|
||
|
|
||
|
namespace Unity.Multiplayer.Samples.Utilities
|
||
|
{
|
||
|
// useful for classes that can't be NetworkBehaviours themselves (for example, with dedicated servers, you can't have a NetworkBehaviour that exists
|
||
|
// on clients but gets stripped on the server, this will mess with your NetworkBehaviour indexing.
|
||
|
public class NetcodeHooks : NetworkBehaviour
|
||
|
{
|
||
|
public event Action OnNetworkSpawnHook;
|
||
|
|
||
|
public event Action OnNetworkDespawnHook;
|
||
|
|
||
|
public override void OnNetworkSpawn()
|
||
|
{
|
||
|
base.OnNetworkSpawn();
|
||
|
OnNetworkSpawnHook?.Invoke();
|
||
|
}
|
||
|
|
||
|
public override void OnNetworkDespawn()
|
||
|
{
|
||
|
base.OnNetworkDespawn();
|
||
|
OnNetworkDespawnHook?.Invoke();
|
||
|
}
|
||
|
}
|
||
|
}
|