mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-07 13:05:41 +00:00
98 lines
1.7 KiB
C#
98 lines
1.7 KiB
C#
using OWML.Common;
|
|
using QSB.EchoesOfTheEye.LightSensorSync;
|
|
using QSB.Utility;
|
|
using UnityEngine;
|
|
|
|
namespace QSB.Player;
|
|
|
|
public partial class PlayerInfo
|
|
{
|
|
public OWCamera Camera
|
|
{
|
|
get
|
|
{
|
|
if (_camera == null && IsReady)
|
|
{
|
|
DebugLog.ToConsole($"Warning - {PlayerId}.Camera is null!", MessageType.Warning);
|
|
}
|
|
|
|
return _camera;
|
|
}
|
|
set
|
|
{
|
|
if (value == null)
|
|
{
|
|
DebugLog.ToConsole($"Warning - Setting {PlayerId}.Camera to null.", MessageType.Warning);
|
|
}
|
|
|
|
_camera = value;
|
|
}
|
|
}
|
|
private OWCamera _camera;
|
|
|
|
public GameObject CameraBody { get; set; }
|
|
|
|
public GameObject Body
|
|
{
|
|
get
|
|
{
|
|
if (_body == null && IsReady)
|
|
{
|
|
DebugLog.ToConsole($"Warning - {PlayerId}.Body is null!", MessageType.Warning);
|
|
}
|
|
|
|
return _body;
|
|
}
|
|
set
|
|
{
|
|
if (value == null)
|
|
{
|
|
DebugLog.ToConsole($"Warning - Setting {PlayerId}.Body to null.", MessageType.Warning);
|
|
}
|
|
|
|
_body = value;
|
|
}
|
|
}
|
|
private GameObject _body;
|
|
|
|
public LightSensor LightSensor
|
|
{
|
|
get
|
|
{
|
|
if (IsLocalPlayer)
|
|
{
|
|
return Locator.GetPlayerLightSensor();
|
|
}
|
|
|
|
if (CameraBody == null)
|
|
{
|
|
DebugLog.ToConsole($"Error - Can't get LightSensor for {PlayerId}, because CameraBody is null.", MessageType.Error);
|
|
return null;
|
|
}
|
|
|
|
return CameraBody.transform.Find("REMOTE_CameraDetector").GetComponent<LightSensor>();
|
|
}
|
|
}
|
|
|
|
public QSBPlayerLightSensor QSBPlayerLightSensor;
|
|
|
|
public Vector3 Velocity
|
|
{
|
|
get
|
|
{
|
|
if (IsLocalPlayer)
|
|
{
|
|
return Locator.GetPlayerBody().GetVelocity();
|
|
}
|
|
|
|
if (Body == null)
|
|
{
|
|
DebugLog.ToConsole($"Error - Can't get velocity for {PlayerId}, because Body is null.", MessageType.Error);
|
|
return Vector3.zero;
|
|
}
|
|
|
|
return Body.GetComponent<RemotePlayerVelocity>().Velocity;
|
|
}
|
|
}
|
|
}
|