Ln Go

Missile 본문

Unity/Quad Action

Missile

Ln Ro 2021. 6. 4. 02:22
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Missile : MonoBehaviour
{
    void Update()
    {
        transform.Rotate(Vector3.right * 30 * Time.deltaTime);
    }
}

'Unity > Quad Action' 카테고리의 다른 글

StartZone  (0) 2021.06.04
Orbit  (0) 2021.06.04
Bullet  (0) 2021.06.04
Grenade  (0) 2021.06.04
Weapon  (0) 2021.06.04
Comments