comment pass
This commit is contained in:
@@ -3,11 +3,18 @@ using UnityEngine;
|
||||
|
||||
namespace EscapeRoomEngine.Desert.Runtime.Puzzle_B
|
||||
{
|
||||
/// <summary>
|
||||
/// The rotator component used by the hexagon module.
|
||||
/// </summary>
|
||||
[RequireComponent(typeof(Emission))]
|
||||
public class Rotator : MonoBehaviour
|
||||
{
|
||||
[Range(0, 359)] public int angle;
|
||||
[Range(0, 1)] public float speed;
|
||||
[Tooltip("The angle this rotator should rotate towards.")]
|
||||
[Range(0, 359)]
|
||||
public int angle;
|
||||
[Tooltip("How quickly to rotate towards the target angle.")]
|
||||
[Range(0, 1)]
|
||||
public float speed;
|
||||
|
||||
public Emission Emission { get; private set; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user