Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Rejected CoordinatePath#setStepDerivation() should take 2 args

Joined
Dec 31, 2015
Messages
602
Add (int xDerviation, int yDerivation) keep the current (int derivation) which will default to the same for both.

Ty.
 
@Party
 
Client Developer
Joined
Oct 12, 2015
Messages
3,764
The single int sets the maximum bounds for a random x/-x y/-y bounds.
 
Joined
Dec 31, 2015
Messages
602
The single int sets the maximum bounds for a random x/-x y/-y bounds.
Damn it party I know what it does. However what if you want to specify a different maximum for the X and Y bounds.... Maybe your path has more lenience on one axis than the other.
 
Client Developer
Joined
Oct 12, 2015
Messages
3,764
In which case you'd miss-click and it snap to the nearest reachable location.
 
Joined
Dec 31, 2015
Messages
602
In which case you'd miss-click and it snap to the nearest reachable location.
Indeed, but what if there is a small wall between and then it starts running to a location you don't want which can screw the path up completely. This may not be the way to go about it specifically. However I think more customization with paths would be useful to developers.
 
Client Developer
Joined
Oct 12, 2015
Messages
3,764
Then set the step deviation to 0 and let the step distancing do it's thing.
 
Top