diff --git a/android/assets/particles/standard_thrust.p b/android/assets/particles/standard_thrust.p index ae938c3..8d3926a 100755 --- a/android/assets/particles/standard_thrust.p +++ b/android/assets/particles/standard_thrust.p @@ -58,8 +58,8 @@ timeline0: 0.0 - Scale - lowMin: 0.0 lowMax: 0.0 -highMin: 0.5 -highMax: 0.5 +highMin: 1.0 +highMax: 1.0 relative: false scalingCount: 4 scaling0: 1.0 @@ -133,10 +133,10 @@ timeline2: 0.25342464 timeline3: 0.89041096 timeline4: 1.0 - Options - -attached: true +attached: false continuous: true aligned: false -additive: true +additive: false behind: false premultipliedAlpha: false - Image Path - diff --git a/core/src/zero1hd/polyjet/entity/PolyJetEntity.java b/core/src/zero1hd/polyjet/entity/PolyJetEntity.java index e4fa0fe..1fcc5d4 100755 --- a/core/src/zero1hd/polyjet/entity/PolyJetEntity.java +++ b/core/src/zero1hd/polyjet/entity/PolyJetEntity.java @@ -35,7 +35,7 @@ public class PolyJetEntity extends Actor { @Override public void act(float delta) { - thrust.setPosition(getX()+(getWidth()-2)/2 - 1f/16f, getY()-0.15f); + thrust.setPosition(getX()+(getWidth())/2 - 1f/16f, getY()-0.15f); thrust.update(delta); teleportCloak.setPosition(getX() +(getWidth()-1)/2, getY() + (getHeight()-1)/2);