19 lines
512 B
C#
19 lines
512 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace BlueWaterProject
|
|
{
|
|
public class RadarNeedle : MonoBehaviour
|
|
{
|
|
[field: SerializeField]
|
|
[field: Tooltip("바늘 회전 속도 \n 360 = 1초에 1바퀴 \n 음수는 시계방향")]
|
|
public float RotationSpeed { get; set; }
|
|
private float currentRotationZ = 0f;
|
|
|
|
private void FixedUpdate()
|
|
{
|
|
transform.Rotate(0, 0, RotationSpeed * Time.deltaTime);
|
|
}
|
|
}
|
|
} |