Skip to content

0.2.0

Pre-release
Pre-release

Choose a tag to compare

@OWeinert OWeinert released this 11 Jan 00:21
· 231 commits to main since this release
  • Simplified Block/Item/Tool/etc creation by moving the assignment of the internal name to the createX(...) function.
    What previously looked like that (for Blocks in this example):
    betamoon.createBlock(200, "rock")
      :setBlockName("my_block")
      :register("My Block")
    Now looks like this:
    betamoon.createBlock(200, "rock", "my_block")
      :register("My Block")
    This is the same for Items and Tools.
  • Added createArmor(...) API to create new Armor items with the possibility to use custom textures and materials.
  • Added createArmorMaterial(...) API to create new Armor Materials.
  • Updated and Improved examples. (Examples for new features are currently missing).