Skip to content

Commit

Permalink
[Net Players] disable hover goal
Browse files Browse the repository at this point in the history
  • Loading branch information
kipash committed Sep 18, 2023
1 parent feea231 commit 9a276f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export class SampleNetworkedPlayer extends Behaviour {
else
this.gameObject.translateOnAxis(vecToGoal.normalize(), distanceToTravel);

const reactOnHover = input.getIsMouse(0);
const reactOnHover = false; //input.getPointerPositionDelta(0)!.length() > 1;

// save pointer position on pointer down
if(input.getPointerDown(0)) {
Expand Down

0 comments on commit 9a276f0

Please sign in to comment.