mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-07 13:05:41 +00:00
07aee5c3ea
This reverts commit 6c30104951
.
27 lines
906 B
C#
27 lines
906 B
C#
using QSB.Player;
|
|
using UnityEngine;
|
|
|
|
namespace QSB.WorldSync
|
|
{
|
|
public abstract class WorldObject<T> : IWorldObject
|
|
where T : MonoBehaviour
|
|
{
|
|
public int ObjectId { get; init; }
|
|
public T AttachedObject { get; init; }
|
|
public string Name => AttachedObject == null ? "<NullObject!>" : AttachedObject.name;
|
|
public string LogName => $"{QSBPlayerManager.LocalPlayerId}.{ObjectId}:{GetType().Name}";
|
|
|
|
public virtual void Init() { }
|
|
public virtual void OnRemoval() { }
|
|
public MonoBehaviour ReturnObject() => AttachedObject;
|
|
public virtual bool ShouldDisplayLabel() => true;
|
|
public virtual string ReturnLabel() => LogName;
|
|
|
|
/// indicates that this won't become ready immediately
|
|
protected void StartDelayedReady() => WorldObjectManager._numObjectsReadying++;
|
|
|
|
/// indicates that this is now ready
|
|
protected void FinishDelayedReady() => WorldObjectManager._numObjectsReadying--;
|
|
}
|
|
}
|