mirror of
https://github.com/FabricMC/fabric.git
synced 2024-11-22 15:47:57 -05:00
Stabilise experimental api's
This commit is contained in:
parent
0d474ec430
commit
74492929a5
5 changed files with 2 additions and 10 deletions
|
@ -1,2 +1,2 @@
|
|||
archivesBaseName = "fabric-biomes-v1"
|
||||
version = getSubprojectVersion(project, "0.2.5")
|
||||
version = getSubprojectVersion(project, "0.2.6")
|
||||
|
|
|
@ -29,11 +29,9 @@ public final class NetherBiomes {
|
|||
/**
|
||||
* Adds a biome to the Nether generator. Biomes must set their own noise values in the {@link Biome.MixedNoisePoint} class for the biome to properly generate.
|
||||
*
|
||||
* @deprecated Experimental feature, may be removed or changed without further notice due to potential changes to Nether biomes in subsequent snapshots.
|
||||
* @param biome The biome to add. Must not be null.
|
||||
* @see Biome.MixedNoisePoint
|
||||
*/
|
||||
@Deprecated
|
||||
public static void addNetherBiome(Biome biome) {
|
||||
InternalBiomeData.addNetherBiome(biome);
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
archivesBaseName = "fabric-object-builder-api-v1"
|
||||
version = getSubprojectVersion(project, "1.5.2")
|
||||
version = getSubprojectVersion(project, "1.5.3")
|
||||
|
||||
dependencies {
|
||||
compile project(path: ':fabric-api-base', configuration: 'dev')
|
||||
|
|
|
@ -30,10 +30,7 @@ import net.fabricmc.fabric.mixin.object.builder.ModelPredicateProviderRegistrySp
|
|||
* {@link net.minecraft.client.item.ModelPredicateProviderRegistry#get(Item, Identifier)}.</p>
|
||||
*
|
||||
* @see net.minecraft.client.item.ModelPredicateProviderRegistry
|
||||
* @deprecated Experimental feature, may be removed or changed without further notice.
|
||||
* Vanilla snapshot feature, subject to vanilla change.
|
||||
*/
|
||||
@Deprecated
|
||||
public final class FabricModelPredicateProviderRegistry {
|
||||
/**
|
||||
* Registers a model predicate provider that is applicable for any item.
|
||||
|
|
|
@ -36,10 +36,7 @@ import net.fabricmc.fabric.mixin.object.builder.DefaultAttributeRegistryAccessor
|
|||
* {@link net.minecraft.entity.attribute.DefaultAttributeRegistry#get(EntityType)}.</p>
|
||||
*
|
||||
* @see net.minecraft.entity.attribute.DefaultAttributeRegistry
|
||||
* @deprecated Experimental feature, may be removed or changed without further notice.
|
||||
* Vanilla snapshot feature, subject to vanilla change.
|
||||
*/
|
||||
@Deprecated
|
||||
public final class FabricDefaultAttributeRegistry {
|
||||
/**
|
||||
* Private logger, not exposed.
|
||||
|
|
Loading…
Reference in a new issue