Untitled
Anonymous
plain_text
09/15/2021 10:57 AM
600 B
25
Indexable
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerController : MonoBehaviour
{
private void Awake()
{
Debug.Log("Awake()");
}
// Start is called before the first frame update
void Start()
{
Debug.Log("Start()");
}
// Update is called once per frame
void Update()
{
Debug.Log("Update()");
}
}
Editor is loading...