
Awake 및 Start
Tutorial
Beginner
+10XP
5 mins
(58)
Unity Technologies

1. Awake 및 Start
using UnityEngine;
using System.Collections;
public class AwakeAndStart : MonoBehaviour
{
void Awake ()
{
Debug.Log("Awake called.");
}
void Start ()
{
Debug.Log("Start called.");
}
}