-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Removed Liminal Library, new parameter-based level generation, new datapack-based registration
- Loading branch information
1 parent
030fe44
commit 49fb536
Showing
48 changed files
with
1,780 additions
and
1,355 deletions.
There are no files selected for viewing
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
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
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
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 |
---|---|---|
@@ -1,12 +1,15 @@ | ||
package com.kpabr.backrooms.api; | ||
|
||
import com.kpabr.backrooms.init.BackroomsLevels; | ||
import com.kpabr.backrooms.world.biome.BaseBiomeSource; | ||
import net.ludocrypt.limlib.api.LiminalWorld; | ||
import net.ludocrypt.limlib.api.world.AbstractNbtChunkGenerator; | ||
import com.mojang.serialization.Codec; | ||
|
||
import net.minecraft.util.registry.RegistryKey; | ||
import net.minecraft.world.World; | ||
import net.minecraft.world.biome.source.BiomeSource; | ||
import net.minecraft.world.gen.chunk.ChunkGenerator; | ||
|
||
public class LevelsApi { | ||
public static<T extends AbstractNbtChunkGenerator, S extends BaseBiomeSource> LiminalWorld addLevel(String name, Class<T> chunkGenerator, Class<S> biomeSource) { | ||
return BackroomsLevels.addLevel(name, chunkGenerator, biomeSource); | ||
public static RegistryKey<World> addLevel(String namespace, String levelName, String biomeSourceName, Codec<? extends ChunkGenerator> chunkGenerator, Codec<? extends BiomeSource> biomeSource) { | ||
return BackroomsLevels.addLevel(namespace, levelName, biomeSourceName, chunkGenerator, biomeSource); | ||
} | ||
} |
37 changes: 0 additions & 37 deletions
37
src/main/java/com/kpabr/backrooms/client/render/sky/StrongLiminalShader.java
This file was deleted.
Oops, something went wrong.
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
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
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
32 changes: 0 additions & 32 deletions
32
src/main/java/com/kpabr/backrooms/mixins/ServerPlayerEntityMixin.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.