본문 바로가기
프로그래밍/Unity

Unity - Vector3.MoveTowards

by 뽀도 2019. 1. 14.

현재 지점에서 목표지점까지 이동한다.


using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Transform target; public float speed; void Update() { float step = speed * Time.deltaTime; transform.position = Vector3.MoveTowards(transform.position, target.position, step); } }


https://docs.unity3d.com/kr/530/ScriptReference/Vector3.MoveTowards.html

반응형

'프로그래밍 > Unity' 카테고리의 다른 글

[unity] Awake(), Start(), Update() and FixedUpdate()  (0) 2018.06.07
c# yield  (0) 2017.06.12
c# 링크  (0) 2017.01.06
var 암시적 형식  (0) 2017.01.05
델리게이트  (0) 2017.01.05

댓글