Search results

  1. Josharias

    Chunk specific data to networked clients

    I have been working on extracting the world/chunk generation code out to module space and there is a need to be able to replicate biome data over to networked clients (as this data can affect temperature and humidity when rendering). With my limited understanding of the core code (I have only...
  2. Josharias

    Noob questions

    It appears to only modify rendering of the sides of the block. What about the top? (likely I have missed where the top is handled) if (block.getURI().toNormalisedString().equals("core:grass") && dir != Side.TOP && dir != Side.BOTTOM) {...
  3. Josharias

    Noob questions

    1. Why is grass block sides so special that they need a mask (turned on by BLOCK_HINT_GRASS)? 2. Have there been any conclusions about liquids and how they should/will operate at a block data level? (I have see threads about it, but it seems it is still under debate) 3. Is there...
Top