MonoBehaviour.OnServerInitialized()

매뉴얼로 전환

설명

Called on the server whenever a Network.InitializeServer was invoked and has completed.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void OnServerInitialized() { Debug.Log("Server initialized and ready"); } }