mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-12-27 11:09:06 +00:00
Update compound worlds on the fly
This commit is contained in:
@@ -35,7 +35,7 @@ import java.util.concurrent.CompletableFuture;
|
||||
|
||||
public class IrisEngineCompound implements EngineCompound {
|
||||
@Getter
|
||||
private final World world;
|
||||
private World world;
|
||||
|
||||
private final AtomicRollingSequence wallClock;
|
||||
|
||||
@@ -361,6 +361,11 @@ public class IrisEngineCompound implements EngineCompound {
|
||||
return defaultEngine;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateWorld(World world) {
|
||||
this.world = world;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void hotload() {
|
||||
for(int i = 0; i < getSize(); i++)
|
||||
|
||||
Reference in New Issue
Block a user