IMaterial
Link to imaterial
Объект IMaterial представляет материал, из которого сделан блок.
Импорт пакета
Link to импорт-пакета
It might be required for you to import the package if you encounter any issues, so better be safe than sorry and add the import.
import crafttweaker.block.IMaterial;
ZenGetters/ZenMethods without parameters
Link to zengetterszenmethods-without-parameters
ZenGetter | ZenMethod | Возвращаемый тип |
---|---|---|
ZenGetter blocksLight | ZenMethod blocksLight() | Возвращаемый тип bool |
ZenGetter blocksMovement | ZenMethod blocksMovement() | Возвращаемый тип bool |
ZenGetter canBurn | ZenMethod getCanBurn() | Возвращаемый тип bool |
ZenGetter mobilityFlag | ZenMethod getMobilityFlag() | Возвращаемый тип string |
ZenGetter liquid | ZenMethod isLiquid() | Возвращаемый тип bool |
ZenGetter opaque | ZenMethod isOpaque() | Возвращаемый тип bool |
ZenGetter replaceable | ZenMethod isReplaceable() | Возвращаемый тип bool |
ZenGetter solid | ZenMethod isSolid() | Возвращаемый тип bool |
ZenGetter toolNotRequired | ZenMethod isToolNotRequired() | Возвращаемый тип bool |
ZenGetter | ZenMethod setReplaceable() | Возвращаемый тип IMaterial |
ZenMethods with parameters
Link to zenmethods-with-parameters
matches
Link to matches
Uses an IMaterial.
Returns a bool.
ZenScript CopymaterialObj.matches(IMaterial other);
Получение оригинальных материалов из Minecraft
Link to получение-оригинальных-материалов-из-minecraft
Вы можете использовать эти методы, чтобы получить материалы из оригинальной игры:
ZenScript Copycrafttweaker.blocks.IMaterial.air();
crafttweaker.blocks.IMaterial.anvil();
crafttweaker.blocks.IMaterial.barrier();
crafttweaker.blocks.IMaterial.cactus();
crafttweaker.blocks.IMaterial.cake();
crafttweaker.blocks.IMaterial.carpet();
crafttweaker.blocks.IMaterial.circuits();
crafttweaker.blocks.IMaterial.clay();
crafttweaker.blocks.IMaterial.cloth();
crafttweaker.blocks.IMaterial.coral();
crafttweaker.blocks.IMaterial.craftedSnow();
crafttweaker.blocks.IMaterial.dragonEgg();
crafttweaker.blocks.IMaterial.fire();
crafttweaker.blocks.IMaterial.glass();
crafttweaker.blocks.IMaterial.gourd();
crafttweaker.blocks.IMaterial.grass();
crafttweaker.blocks.IMaterial.ground();
crafttweaker.blocks.IMaterial.ice();
crafttweaker.blocks.IMaterial.iron();
crafttweaker.blocks.IMaterial.lava();
crafttweaker.blocks.IMaterial.leaves();
crafttweaker.blocks.IMaterial.packedIce();
crafttweaker.blocks.IMaterial.piston();
crafttweaker.blocks.IMaterial.plants();
crafttweaker.blocks.IMaterial.portal();
crafttweaker.blocks.IMaterial.redstoneLight();
crafttweaker.blocks.IMaterial.rock();
crafttweaker.blocks.IMaterial.sand();
crafttweaker.blocks.IMaterial.snow();
crafttweaker.blocks.IMaterial.sponge();
crafttweaker.blocks.IMaterial.structureVoid();
crafttweaker.blocks.IMaterial.tnt();
crafttweaker.blocks.IMaterial.vine();
crafttweaker.blocks.IMaterial.water();
crafttweaker.blocks.IMaterial.web();
crafttweaker.blocks.IMaterial.wood();