mirror of
https://github.com/DerTyp7/defrain-shooter-unity.git
synced 2025-10-30 21:17:09 +01:00
CHANGED TO MIRROR
This commit is contained in:
21
Assets/Mirror/Runtime/NetworkStartPosition.cs
Normal file
21
Assets/Mirror/Runtime/NetworkStartPosition.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace Mirror
|
||||
{
|
||||
/// <summary>Start position for player spawning, automatically registers itself in the NetworkManager.</summary>
|
||||
[DisallowMultipleComponent]
|
||||
[AddComponentMenu("Network/NetworkStartPosition")]
|
||||
[HelpURL("https://mirror-networking.gitbook.io/docs/components/network-start-position")]
|
||||
public class NetworkStartPosition : MonoBehaviour
|
||||
{
|
||||
public void Awake()
|
||||
{
|
||||
NetworkManager.RegisterStartPosition(transform);
|
||||
}
|
||||
|
||||
public void OnDestroy()
|
||||
{
|
||||
NetworkManager.UnRegisterStartPosition(transform);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user