Package com.bergerkiller.bukkit.tc.controller.components

Examples of com.bergerkiller.bukkit.tc.controller.components.PoweredCartSoundLoop


  private int fuelCheckCounter = 0;

  @Override
  public void onAttached() {
    super.onAttached();
    this.soundLoop = new PoweredCartSoundLoop(this);
    double pushX = entity.getPushX();
    double pushZ = entity.getPushZ();
    if (MathUtil.lengthSquared(pushX, pushZ) < 0.001) {
      this.pushDirection = BlockFace.SELF;
    } else {
View Full Code Here

TOP

Related Classes of com.bergerkiller.bukkit.tc.controller.components.PoweredCartSoundLoop

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.