Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 백준 25305번
- Java
- 연속된 숫자의 합
- html
- 알고리즘
- 백준 #11382번 #
- 백준 9506번
- 피라미드 출력
- 백준 2587번
- 백준 5597번
- 직각 삼각형
- 대칭 차집합
- Unity
- 일상생활 영어표현
- 해석
- 논리 연산
- C
- C++
- 상세 풀이
- 잡다한 일
- 백준 2501번
- 차이
- 배열
- javascript
- 백준 27433번
- 백준 1157번
- 백준 1269번
- 백준 2525번
- 5073번
- 백준 5086번
Archives
- Today
- Total
목록Invoke() 함수 (1)
YunDev
Unity - 2D 적 A.I 구현하기
https://www.youtube.com/watch?v=7MYUOzgZTf8 오늘은 A.I를 구현해보도록 하겠습니다! 유니티에서는 C#을 사용합니다. using System.Collections; using System.Collections.Generic; using UnityEngine; public class EnemyMove : MonoBehaviour { Rigidbody2D rigid; public int nextMove; Animator anim; SpriteRenderer spriteRenderer; void Awake() { rigid = GetComponent(); anim = GetComponent(); spriteRenderer = GetComponent(); Think(); Inv..
Programming/Unity
2020. 3. 9. 21:57