mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Implement breeze
This commit is contained in:
parent
82d0a87020
commit
52a93ecc18
2 changed files with 9 additions and 0 deletions
|
@ -66,6 +66,7 @@ public final class EntityDefinitions {
|
||||||
public static final EntityDefinition<BlazeEntity> BLAZE;
|
public static final EntityDefinition<BlazeEntity> BLAZE;
|
||||||
public static final EntityDefinition<BoatEntity> BOAT;
|
public static final EntityDefinition<BoatEntity> BOAT;
|
||||||
public static final EntityDefinition<BoggedEntity> BOGGED;
|
public static final EntityDefinition<BoggedEntity> BOGGED;
|
||||||
|
public static final EntityDefinition<BreezeEntity> BREEZE;
|
||||||
public static final EntityDefinition<AbstractWindChargeEntity> BREEZE_WIND_CHARGE;
|
public static final EntityDefinition<AbstractWindChargeEntity> BREEZE_WIND_CHARGE;
|
||||||
public static final EntityDefinition<CamelEntity> CAMEL;
|
public static final EntityDefinition<CamelEntity> CAMEL;
|
||||||
public static final EntityDefinition<CatEntity> CAT;
|
public static final EntityDefinition<CatEntity> CAT;
|
||||||
|
@ -530,6 +531,10 @@ public final class EntityDefinitions {
|
||||||
.height(1.8f).width(0.6f)
|
.height(1.8f).width(0.6f)
|
||||||
.addTranslator(MetadataType.BYTE, BlazeEntity::setBlazeFlags)
|
.addTranslator(MetadataType.BYTE, BlazeEntity::setBlazeFlags)
|
||||||
.build();
|
.build();
|
||||||
|
BREEZE = EntityDefinition.inherited(BreezeEntity::new, mobEntityBase)
|
||||||
|
.type(EntityType.BREEZE)
|
||||||
|
.height(1.77f).width(0.6f)
|
||||||
|
.build();
|
||||||
CREEPER = EntityDefinition.inherited(CreeperEntity::new, mobEntityBase)
|
CREEPER = EntityDefinition.inherited(CreeperEntity::new, mobEntityBase)
|
||||||
.type(EntityType.CREEPER)
|
.type(EntityType.CREEPER)
|
||||||
.height(1.7f).width(0.6f)
|
.height(1.7f).width(0.6f)
|
||||||
|
|
|
@ -26,6 +26,7 @@
|
||||||
package org.geysermc.geyser.entity.type.living.monster;
|
package org.geysermc.geyser.entity.type.living.monster;
|
||||||
|
|
||||||
import org.cloudburstmc.math.vector.Vector3f;
|
import org.cloudburstmc.math.vector.Vector3f;
|
||||||
|
import org.cloudburstmc.protocol.bedrock.data.entity.EntityFlag;
|
||||||
import org.geysermc.geyser.entity.EntityDefinition;
|
import org.geysermc.geyser.entity.EntityDefinition;
|
||||||
import org.geysermc.geyser.session.GeyserSession;
|
import org.geysermc.geyser.session.GeyserSession;
|
||||||
import org.geysermc.mcprotocollib.protocol.data.game.entity.metadata.Pose;
|
import org.geysermc.mcprotocollib.protocol.data.game.entity.metadata.Pose;
|
||||||
|
@ -39,6 +40,9 @@ public class BreezeEntity extends MonsterEntity {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void setPose(Pose pose) {
|
public void setPose(Pose pose) {
|
||||||
|
// TODO Test
|
||||||
|
setFlag(EntityFlag.FACING_TARGET_TO_RANGE_ATTACK, pose == Pose.SHOOTING);
|
||||||
|
setFlag(EntityFlag.JUMP_GOAL_JUMP, pose == Pose.INHALING);
|
||||||
super.setPose(pose);
|
super.setPose(pose);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue