Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/04/20 in all areas

  1. Could be. There's still a lot of methods in 1.16 that haven't been properly named yet
    1 point
  2. Your block does not have a HALF property.
    1 point
  3. Since you are using a texture, almost everything within PlayerRenderer is worthless to you. You could literally just replicate SkeletonRenderer or some other BipedRenderer and be fine with it. As for PlayerModel, it depends on what you are trying to do with it. If you are using any of the overlay layer on the skin, you probably will need to use PlayerModel. Else, you can just get away with BipedModel and going from there.
    1 point
  4. net.minecraft.client.renderer.entity.model.* And yes, they do exist.
    1 point
  5. client-extra.jar in your external dependencies.
    1 point
  6. It's easy, but also not so easy. Firstly, it's going to be tougher in 1.16.1 with so many srg names still. It made my eyes bleed enough that I gave up, and am waiting for new/better mappings, or the new system to come out so I can at least contribute while my eyes bleed. But the way the overworld does it is in net.minecraft.world.gen.layer the LayerUtil class sets it all up (this is done in the OverworldBiomeProvider constructor) Then the BiomeProvider requests the biome from the layer in its getNoiseBiome method. (it's fairly complicated how it generates the world, you'd have to read through the code, I'm slooooowly working on understanding how the vanilla layer worldgen works) You CAN just override getNoiseBiome in your custom BiomeProvider, and return biomes there however you'd like. There's a reason there aren't "tutorials" all over the internet for doing this, because it's not really simple, no matter how you slice it *edit: Annnnd I missed a few of the methods you were unsure of. That's what I get for trying to think first thing in the am lol. Anyhow, looking at vanilla overworld provider, func_230320_a_ returns a new instance of your BiomeProvider and func_230319_a_ returns a Codec for your BiomeProvider. I can't explain the whole Codec thing in too much detail, because it's still really new to me, but from what I understand it handles serialization/deserialization of data, looks like maybe settings in this case. In the vanilla OverworldBiomeProvider it is set up at the top of the class, maybe someone can explain it, or if you look at it you can implement it.
    1 point
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.