mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-25 15:35:22 +00:00
18a520bc78
* cleanup
64 lines
1.8 KiB
C#
64 lines
1.8 KiB
C#
using UnityEngine;
|
|
|
|
namespace QSB.Animation
|
|
{
|
|
public class QSBFlashlight : MonoBehaviour
|
|
{
|
|
public OWLight2[] _lights;
|
|
public OWLight2 _illuminationCheckLight;
|
|
public Transform _root;
|
|
public Transform _basePivot;
|
|
public Transform _wobblePivot;
|
|
|
|
private bool _flashlightOn;
|
|
private Vector3 _baseForward;
|
|
private Quaternion _baseRotation;
|
|
|
|
private void Start()
|
|
{
|
|
_baseForward = _basePivot.forward;
|
|
_baseRotation = _basePivot.rotation;
|
|
}
|
|
|
|
public void TurnOn()
|
|
{
|
|
if (_flashlightOn)
|
|
{
|
|
return;
|
|
}
|
|
foreach (var light in _lights)
|
|
{
|
|
light.GetLight().enabled = true;
|
|
}
|
|
_flashlightOn = true;
|
|
var rotation = _root.rotation;
|
|
_basePivot.rotation = rotation;
|
|
_baseRotation = rotation;
|
|
_baseForward = _basePivot.forward;
|
|
}
|
|
|
|
public void TurnOff()
|
|
{
|
|
if (!_flashlightOn)
|
|
{
|
|
return;
|
|
}
|
|
foreach (var light in _lights)
|
|
{
|
|
light.GetLight().enabled = false;
|
|
}
|
|
_flashlightOn = false;
|
|
}
|
|
|
|
private void FixedUpdate()
|
|
{
|
|
var lhs = Quaternion.FromToRotation(_basePivot.up, _root.up) * Quaternion.FromToRotation(_baseForward, _root.forward);
|
|
var b = lhs * _baseRotation;
|
|
_baseRotation = Quaternion.Slerp(_baseRotation, b, 6f * Time.deltaTime);
|
|
_basePivot.rotation = _baseRotation;
|
|
_baseForward = _basePivot.forward;
|
|
_wobblePivot.localRotation = OWUtilities.GetWobbleRotation(0.3f, 0.15f) * Quaternion.identity;
|
|
}
|
|
}
|
|
}
|