mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-02-06 09:39:52 +00:00
23 lines
525 B
C#
23 lines
525 B
C#
using QSB.MeteorSync.WorldObjects;
|
|
using QSB.WorldSync;
|
|
|
|
namespace QSB.MeteorSync
|
|
{
|
|
/// we have to do this fake bs
|
|
public class MeteorManager : WorldObjectManager
|
|
{
|
|
public new static bool AllReady;
|
|
|
|
protected override void RebuildWorldObjects(OWScene scene)
|
|
{
|
|
QSBWorldSync.Init<QSBMeteorLauncher, MeteorLauncher>();
|
|
// wait a bit because meteors get created late
|
|
QSBCore.UnityEvents.FireInNUpdates(() =>
|
|
{
|
|
QSBWorldSync.Init<QSBMeteor, MeteorController>();
|
|
AllReady = true;
|
|
}, 10);
|
|
}
|
|
}
|
|
}
|