IExplosion
Link to iexplosion
Импорт класса
Link to импорт-класса
It might be required to import the class to avoid errors.
import crafttweaker.world.IExplosion;
Creating an IExplosion object
Link to creating-an-iexplosion-object
To create an IExplosion object, you must obtain it from an IWorld and call it with any of these three methods:
world.createExplosion(IEntity, double, double, double, float, bool, bool);
world.performExplosion(IEntity, double, double, double, float, bool, bool);
world.performExplosion(IExplosion);
ZenGetters and ZenSetters
Link to zengetters-and-zensetters
ZenGetter | ZenSetter | Тип | Описание |
---|---|---|---|
ZenGetter world | ZenSetter | Тип IWorld | Описание The world of the explosion. |
ZenGetter placedBy | ZenSetter | Тип IEntityLivingBase | Описание The entity that initiated the explosion. If the explosion was caused by TNT, the entity is the entity that placed down the TNT, if applicable. Can be null . |
ZenGetter position | ZenSetter | Тип Position3f | Описание The position of the explosion. |
ZenGetter affectedBlockPositions | ZenSetter affectedBlockPositions | Тип IBlockPos[ ] | Описание A list of block positions that the explosion affects. May be null/empty before doExplosionA() is called. |
ZenGetter playerKnockbackMap | ZenSetter | Тип IVector3d[IPlayer] | Описание A map of players in the explosion area mapped to their respective knockbacks taken from the explosion. |
ZenMethods
Link to zenmethods
clearAffectedBlockPositions()
- clears the list of affected block positionsonExplosionStart(IWorld world)
- returns abool
that is the result of the ExplosionStart event in the specified world, so this should be called if you want to use logic to possibly cancel your explosion before detonating it manually.doExplosionA()
- performs the first part of the explosion; this includes entity damage, entity knockback, andaffectedBlockPositions
assignment.doExplosionB(bool spawnParticles)
- performs the second part of the explosion; this includes sounds, particles, block destruction/dropping, and fire creation.