Browse Source

abstract character cleanup

feature-region-set
FatBoy-DOTC 1 year ago
parent
commit
a004c247ab
  1. 14
      src/engine/objects/AbstractCharacter.java

14
src/engine/objects/AbstractCharacter.java

@ -985,18 +985,8 @@ public abstract class AbstractCharacter extends AbstractWorldObject { @@ -985,18 +985,8 @@ public abstract class AbstractCharacter extends AbstractWorldObject {
@Override
public final void setLoc(final Vector3fImmutable value) {
Regions region = Regions.GetRegionForTeleport(value);
if(region != null){
float regionHeight = region.lerpY(this);
this.region = region;
Vector3fImmutable newValue = new Vector3fImmutable(value.x,regionHeight,value.z); //account for height offset of the current character region
super.setLoc(newValue); // set the location in the world
this.resetLastSetLocUpdate();
} else {
this.region = null;
super.setLoc(value); // set the location in the world
this.resetLastSetLocUpdate();
}
super.setLoc(value); // set the location in the world
this.resetLastSetLocUpdate();
}
public Vector3fImmutable getMovementLoc() {

Loading…
Cancel
Save