0.2.0
Pre-release
Pre-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):Now looks like this:betamoon.createBlock(200, "rock") :setBlockName("my_block") :register("My Block")
This is the same for Items and Tools.betamoon.createBlock(200, "rock", "my_block") :register("My Block")
- 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).