25 lines
705 B
C#
25 lines
705 B
C#
using SHADE;
|
|
using System;
|
|
|
|
public class RaccoonSpin : Script
|
|
{
|
|
[SerializeField]
|
|
[Tooltip("Speed of the rotation in radians per second.")]
|
|
private float RotateSpeed = 1.0f;
|
|
private float rotation = 0.0f;
|
|
[SerializeField]
|
|
private CallbackEvent<int> testEvent;
|
|
[SerializeField]
|
|
private CallbackEvent<int, double, Vector3> testEvent3 = new CallbackEvent<int, double, Vector3>();
|
|
private Transform Transform;
|
|
public RaccoonSpin(GameObject gameObj) : base(gameObj) { }
|
|
|
|
protected override void awake()
|
|
{
|
|
Transform = GetComponent<Transform>();
|
|
if (Transform == null)
|
|
{
|
|
Debug.LogError("Transform is NULL!");
|
|
}
|
|
}
|
|
} |