Closed Belissimo-T closed 1 year ago
private double thrust = SeekerProperties.getDefault().getPhysicalThrust();
This is in physical. Thrust effects Goals and Seekers. Thats the reason why I put it in Physical
instead of Seeker
.
@karl-zschiebsch To my knowledge, only seekers can accelerate und thus only seekers are affected by this config. How and when do goals need/use thrust?
Ok, then I will change that.
I have looked a bit into it. Goals are affected by thrust and can accelerate:
setVelocity(getVelocity().add(getAcceleration().multiply(getThrust() * deltaT)));
Then I will not change this.
@karl-zschiebsch Goals, however, always have a thrust of 0. Did you ever see a goal that was accelerating on its own?
fixed in 0e2c177.
The config should be
seeker.thrust
, notphysical.thrust
.