using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class shurikenController : MonoBehaviour
{
float moveSpeed = 0;
float rotationSpeed = 0; // 회전 속도
float attenuation = 0.96f; //감속 계수
private Vector3 startPos; //down 했을때 위치
[SerializeField] private GameObject upLineGo;
[SerializeField] private GameObject downLineGo;
void Start()
{
}
void Update()
{
//마우스 왼쪽 버튼 클릭 다운
if (Input.GetMouseButtonDown(0))
{
Debug.LogFormat("Down: {0}", Input.mousePosition); // 클릭 다운 위치 로그 반환
this.startPos = Input.mousePosition;
}
else if (Input.GetMouseButtonUp(0)) //왼쪽 버튼을 클릭 업
{
Debug.LogFormat("Up: {0}", Input.mousePosition); // 클릭 업 위치 로그 반환
Vector3 endPos = Input.mousePosition;
float swipeLength = endPos.y - startPos.y;
Debug.LogFormat("swipeLength: {0}", swipeLength); //화면좌표에서 두점사이의 거리
//화면좌표계에서의 두점사이의 거리에 비례해서 이동 좌표계가 맞지 않아 어림잡아 500정도 나눠줌
this.moveSpeed = swipeLength / 500f;
// 회전 속도도 moveSpeed의 수치에 비례하도록 설정
this.rotationSpeed = moveSpeed * 8000;
Debug.LogFormat("moveSpeed: {0}", this.moveSpeed);
}
//x축으로 moveSpeed만큼 매 프레임마다 이동
this.transform.Translate(0, this.moveSpeed, 0, Space.World);
//감쇠 매프레임마다 0.95f를 moveSpeed에 곱해서 이동 속도를 점차적으로 감소
this.moveSpeed *= this.attenuation;
// Z축을 중심으로 수리검이 이동할 떄 moveSpeed*rotationSpeed만큼 매 프레임마다 회전
this.transform.Rotate(0, 0, this.moveSpeed*this.rotationSpeed*Time.deltaTime, Space.World);
if(this.gameObject.transform.position.y < downLineGo.transform.position.y + 0.75f ||
this.gameObject.transform.position.y > upLineGo.transform.position.y)
{
if(this.gameObject.transform.position.y < downLineGo.transform.position.y + 0.75f)
{
//수리검이 시작선(downLine)보다 position.y가 작다면 아랫선의 position.y로 이동
//수리검이 빠른 스피드로 맵을 뚫고 지나가는 것을 방지하기 위함
this.gameObject.transform.position = new Vector3(
this.gameObject.transform.position.x,
downLineGo.transform.position.y + 0.75f,
this.gameObject.transform.position.z);
}
else
{
//수리검이 도착선(upLine)보다 position.y가 작다면 도착선의 position.y로 이동
this.gameObject.transform.position = new Vector3(
this.gameObject.transform.position.x,
upLineGo.transform.position.y,
this.gameObject.transform.position.z);
}
this.moveSpeed = 0;
this.rotationSpeed = 0;
}
}
}
2. ShurikenController.cs
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class DistanceDirector : MonoBehaviour
{
private GameObject shurikenGo;
private GameObject upLineGo;
private GameObject distanceGo;
private Text distanceText;
void Start()
{
this.shurikenGo = GameObject.Find("shuriken");
this.upLineGo = GameObject.Find("upLine");
this.distanceGo = GameObject.Find("distance");
distanceText = distanceGo.GetComponent<Text>();
Debug.LogFormat("this.shurikenGo: {0}", this.shurikenGo); //shuriken 게임오브젝트 인스턴스
Debug.LogFormat("this.upLineGo: {0}", this.upLineGo); //upLine 게임오브젝트 인스턴스
Debug.LogFormat("this.distanceGo: {0}", this.distanceGo); //distance 게임오브젝트 인스턴스 (Canvas-Text)
Debug.LogFormat("distanceText: {0}", distanceText); //distance 게임오브젝트 인스턴스의 텍스트 컴포넌트
}
void Update()
{
//매 프래임마다 자동차와 깃발의 거리를 계산
float length = this.upLineGo.transform.position.y - this.shurikenGo.transform.position.y;
if (length > 0)
{
distanceText.text = string.Format("남은 거리 {0:0.00}m", length);
}
else
{
distanceText.text = "도착!";
}
}
}
3. DistanceDirector.cs
반응형
'산대특 > 게임 클라이언트 프로그래밍' 카테고리의 다른 글
[ClimbCloud] 캐릭터를 AddForce로 이동 및 좌우 전환 만들어보기 (0) | 2024.01.31 |
---|---|
[CatEscape] CatEscape 만들기 (0) | 2024.01.29 |
[Chapter4] Swipe Car 만들기 (0) | 2024.01.26 |
[Chapter3] 룰렛 회전시키기 (0) | 2024.01.26 |
GetMouseButton과 GetMouseButtonDown의 차이점 (0) | 2024.01.26 |