mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-06 01:00:16 +00:00
cleanup
This commit is contained in:
parent
32c90d3b5b
commit
aa7402b095
@ -5,7 +5,6 @@ using QSB.Patches;
|
||||
using QSB.Player;
|
||||
using QSB.Utility;
|
||||
using QSB.WorldSync;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace QSB.ConversationSync.Patches
|
||||
|
@ -1,14 +1,11 @@
|
||||
using OWML.Common;
|
||||
using OWML.Utils;
|
||||
using OWML.Utils;
|
||||
using QSB.Player;
|
||||
using QSB.Utility;
|
||||
using QSB.WorldSync;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace QSB.Animation.Character.WorldObjects
|
||||
{
|
||||
class QSBCharacterAnimController : WorldObject<CharacterAnimController>
|
||||
internal class QSBCharacterAnimController : WorldObject<CharacterAnimController>
|
||||
{
|
||||
private readonly List<PlayerInfo> _playersInHeadZone = new List<PlayerInfo>();
|
||||
|
||||
|
@ -1,5 +1,4 @@
|
||||
using QSB.Animation.Player;
|
||||
using QuantumUNET;
|
||||
using QuantumUNET;
|
||||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
|
@ -1,11 +1,9 @@
|
||||
using QSB.Animation.Player;
|
||||
using QSB.Events;
|
||||
using QSB.Events;
|
||||
using QSB.Player;
|
||||
using QSB.Utility;
|
||||
|
||||
namespace QSB.Animation.Player.Events
|
||||
{
|
||||
class AnimationTriggerEvent : QSBEvent<AnimationTriggerMessage>
|
||||
internal class AnimationTriggerEvent : QSBEvent<AnimationTriggerMessage>
|
||||
{
|
||||
public override EventType Type => EventType.AnimTrigger;
|
||||
|
||||
|
@ -1,5 +1,4 @@
|
||||
using QSB.Animation.Player;
|
||||
using QSB.Events;
|
||||
using QSB.Events;
|
||||
using QSB.Instruments;
|
||||
using QSB.Messaging;
|
||||
using QSB.Player;
|
||||
|
@ -1,5 +1,4 @@
|
||||
using QSB.Animation.Player;
|
||||
using QSB.Events;
|
||||
using QSB.Events;
|
||||
using QSB.Messaging;
|
||||
using QSB.Player;
|
||||
|
||||
|
@ -1,5 +1,4 @@
|
||||
using QSB.Animation.Player;
|
||||
using QSB.Events;
|
||||
using QSB.Events;
|
||||
using QSB.Messaging;
|
||||
using QSB.Player;
|
||||
|
||||
|
@ -1,13 +1,12 @@
|
||||
using QSB.Events;
|
||||
using QSB.Patches;
|
||||
using QSB.Player;
|
||||
using QSB.Utility;
|
||||
using QSB.WorldSync;
|
||||
using UnityEngine;
|
||||
|
||||
namespace QSB.Animation.Patches
|
||||
{
|
||||
class PlayerAnimationPatches : QSBPatch
|
||||
internal class PlayerAnimationPatches : QSBPatch
|
||||
{
|
||||
public override QSBPatchTypes Type => QSBPatchTypes.OnClientConnect;
|
||||
|
||||
|
@ -4,7 +4,6 @@ using QSB.Player;
|
||||
using QSB.Utility;
|
||||
using QSB.WorldSync;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace QSB.ConversationSync.Patches
|
||||
{
|
||||
|
@ -1,8 +1,6 @@
|
||||
using QSB.Animation;
|
||||
using QSB.Animation.Player;
|
||||
using QSB.Animation.Player;
|
||||
using QSB.Instruments;
|
||||
using QSB.TransformSync;
|
||||
using QSB.Utility;
|
||||
using UnityEngine;
|
||||
|
||||
namespace QSB.Player.TransformSync
|
||||
|
@ -3,15 +3,12 @@ using UnityEngine;
|
||||
|
||||
namespace QSB.TransformSync
|
||||
{
|
||||
class IntermediaryTransform
|
||||
internal class IntermediaryTransform
|
||||
{
|
||||
private Transform _attachedTransform;
|
||||
private QSBSector _referenceSector;
|
||||
|
||||
public IntermediaryTransform(Transform transform)
|
||||
{
|
||||
_attachedTransform = transform;
|
||||
}
|
||||
public IntermediaryTransform(Transform transform) => _attachedTransform = transform;
|
||||
/// <summary>
|
||||
/// Get the world position of this INVISIBLE transform.
|
||||
/// </summary>
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
namespace QSB.TransformSync.Patches
|
||||
{
|
||||
class TransformSyncPatches : QSBPatch
|
||||
internal class TransformSyncPatches : QSBPatch
|
||||
{
|
||||
public override QSBPatchTypes Type => QSBPatchTypes.OnClientConnect;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user