-
-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/1.20/dev' into feat/multi-load…
…er-1.21
- Loading branch information
Showing
13 changed files
with
449 additions
and
128 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
common/src/backend/java/dev/engine_room/flywheel/backend/BackendDebugFlags.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package dev.engine_room.flywheel.backend; | ||
|
||
public class BackendDebugFlags { | ||
public static boolean LIGHT_STORAGE_VIEW = false; | ||
} |
9 changes: 9 additions & 0 deletions
9
...on/src/backend/java/dev/engine_room/flywheel/backend/SkyLightSectionStorageExtension.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package dev.engine_room.flywheel.backend; | ||
|
||
import org.jetbrains.annotations.Nullable; | ||
|
||
import net.minecraft.world.level.chunk.DataLayer; | ||
|
||
public interface SkyLightSectionStorageExtension { | ||
@Nullable DataLayer flywheel$skyDataLayer(long section); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.