r23 vs r24
......
2020
특히 Ai는 Al Navigation을 자주 사용하게 될것이다.
2121
2222
== 기초 ==
23
=== 초기 코드 ===
24
{{{#!syntax csharp
25
using UnityEngine;
26
27
public class theseed : MonoBehaviour
28
{
29
30
// Start is called before the first frame update
31
void Start()
32
{
33
34
}
35
36
// Update is called once per frame
37
void Update()
38
{
39
40
}
41
}
42
}}}
2343
=== Start ===
2444
스크래치로 따지면 초록 깃발을 클릭했을때.
2545
딱 1회 실행된다. 뭐 오브젝트 좌표 초기화가 주를 이룬다. 변수는 대부분 전역 쓸듯?
......