Unity3D - 유니티3D Guided Missile 유도 미사일
Unity 2022. 7. 21. 11:49 |반응형
유도 미사일을 만들어 보자.
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
|
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[RequireComponent(typeof(Rigidbody2D))]
public class Guide : MonoBehaviour
{
public Transform target;
private Rigidbody2D rb;
public float speed = 5.0f;
public float rotateSpeed = 200.0f;
// Start is called before the first frame update
void Start()
{
rb = GetComponent<Rigidbody2D>();
}
private void FixedUpdate()
{
Vector2 direction = (Vector2)target.position - rb.position;
direction.Normalize();
float rotateAmount = Vector3.Cross(direction, transform.up).z;
rb.angularVelocity = -rotateAmount * rotateSpeed;
rb.velocity = transform.up * speed;
}
}
|
스크립트를 작성한다.
반응형
'Unity' 카테고리의 다른 글
Unity3D - 유니티3D SerializeField and Range (0) | 2022.08.08 |
---|---|
Unity3D - 유니티3D Animation Curve 애니메이션 커브 (0) | 2022.07.24 |
Unity3D - 유니티3D Camera Shaking 카메라 흔들기 (0) | 2022.07.20 |
Unity3D - 유니티3D AI Navigation NavMesh Components (0) | 2022.07.14 |
Unity3D - 유니티3D 에러/예외 로그 Error/Exception Logging (1) | 2022.07.09 |