일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- meta
- 모작
- XR
- 연습
- 드래곤 플라이트 모작
- 팀 프로젝트
- 드래곤 플라이트
- 개발일지
- 유니티 GUI
- 길건너 친구들
- 포트폴리오
- 유니티
- 유니티 Json 데이터 연동
- HAPTIC
- 오큘러스
- OVR
- CGV
- 팀프로젝트
- 유니티 UI
- 오브젝트 풀링
- ChatGPT
- meta xr
- 가상현실
- Oculus
- 앱 배포
- 멀티플레이
- input system
- 개발
- VR
- Photon Fusion
Archives
- Today
- Total
EasyCastleUNITY
유니티 애니메이션 & 직선 이동 및 대각선 이동 본문
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class MisakiController : MonoBehaviour
{
Animator anim;
public float moveSpeed = 10.0f;
public int state;
public Transform target;
// Start is called before the first frame update
void Start()
{
this.anim = this.GetComponent<Animator>();
this.state = 0;
}
// Update is called once per frame
void Update()
{
this.transform.LookAt(this.target);
Debug.Log(state);
if (state == 1)
{
this.StartRun();
}
if (this.transform.position.z > 3)
{
Debug.Log("Misaki Stand");
this.moveSpeed = 0;
this.state = 0;
this.anim.SetInteger("Run", state);
}
else
{
Debug.Log("Misaki Run");
//state = true;
}
}
public void StartRun()
{
// this.transform.Translate(this.moveSpeed * Time.deltaTime, 0, this.moveSpeed * Time.deltaTime);
this.transform.Translate(Vector3.forward * this.moveSpeed * Time.deltaTime);
}
public void StateChange()
{
if (state == 1) //1이면 Run
{
this.state = 0;
this.anim.SetInteger("Run", state);
}
else if (state == 0) //0이면 Stand
{
state = 1;
this.anim.SetInteger("Run", state);
}
}
}
LookAt -> 오브젝트가 target이 된 오브젝트를 바라보게 함
'유니티 기초' 카테고리의 다른 글
주말과제: 이동하고 몬스터 공격 (1) | 2023.08.05 |
---|---|
유니티 Raycast hit 응용 (Warp && Translate) (0) | 2023.08.04 |
유니티 밤송이 던지기 (0) | 2023.08.04 |
구름 오르기 (0) | 2023.08.02 |
고양이 화살 피하기 게임 (0) | 2023.08.02 |