Advertisement
Guest User

Day/Night Cycle By FireBit

a guest
Aug 6th, 2019
615
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.15 KB | None | 0 0
  1. /**
  2. *Ok so I will point out what needs to be added/changed and removed with comments
  3. *First of all this need to be in WorldProviderMod class
  4. */
  5.  
  6.         @Override
  7.         public void init() {
  8.             this.biomeProvider = new BiomeProviderCustom(this.world.getSeed());
  9.             //First we need to add code that will provide sky light and cycle to our dimension
  10.             this.hasSkyLight = true;
  11.             // Second we need to remove code below because we dont want our Surface Dimension to be treated like nether
  12.             this.nether = NETHER_TYPE;
  13.         }
  14.        
  15. /**
  16. *Now we need to change our world type so that it will be treated as surface
  17. *So please add to code generator dependency that will check if selected world gen type is Surface so if it is
  18. * then it will not gonna generate it as NEHTER_TYPE; and will change value bellow from false to true :)
  19. */
  20.         @Override
  21.         public boolean isSurfaceWorld() {
  22.             return true;
  23.         }
  24. /**
  25. *All this code is already in your code generation except "this.hasSkyLight = true;"
  26. *Also to make this make sense our dimension need to be set to dark so that
  27. *there will be no light underground and our sky will provide it on the surface "Along with Clouds :)"
  28. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement