mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-25 06:17:59 +01:00
45 lines
No EOL
1.3 KiB
Java
45 lines
No EOL
1.3 KiB
Java
package com.minelittlepony.unicopia.entity;
|
|
|
|
import net.minecraft.entity.ItemEntity;
|
|
|
|
class ItemPhysics extends EntityPhysics<ItemEntity> {
|
|
public ItemPhysics(ItemEntity entity) {
|
|
super(entity, ItemImpl.ITEM_GRAVITY, false);
|
|
}
|
|
|
|
@Override
|
|
public void tick() {
|
|
super.tick();
|
|
|
|
if (isGravityNegative() && !entity.getStack().isEmpty()) {
|
|
entity.setNoGravity(true);
|
|
entity.addVelocity(
|
|
0,
|
|
0.04
|
|
+ calcGravity(-0.04D), // apply our own
|
|
0
|
|
);
|
|
|
|
if (!entity.isOnGround()
|
|
|| entity.getVelocity().horizontalLengthSquared() > 9.999999747378752E-6D) {
|
|
|
|
float above = 0.98f;
|
|
if (entity.verticalCollision) {
|
|
above *= entity.world.getBlockState(entity.getBlockPos().up()).getBlock().getSlipperiness();
|
|
//above /= 9;
|
|
}
|
|
|
|
entity.setVelocity(entity.getVelocity().multiply(above, 1, above));
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected void onGravitychanged() {
|
|
if (!entity.world.isClient) {
|
|
float gravity = this.getBaseGravityModifier();
|
|
setBaseGravityModifier(gravity == 0 ? 1 : gravity * 2);
|
|
setBaseGravityModifier(gravity);
|
|
}
|
|
}
|
|
} |