Skip to content

Commit

Permalink
modified vibration pattern based on designer feedback, see #104
Browse files Browse the repository at this point in the history
  • Loading branch information
jbphet committed May 16, 2022
1 parent 98eca13 commit 599732d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/quadrilateral/view/VertexNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ class VertexNode extends Voicing( Circle, 1 ) {
vertex.isPressedProperty.lazyLink( isPressed => {
if ( navigator !== undefined && navigator.vibrate !== undefined ) {
if ( isPressed ) {
vibrationManager.startVibrate( [ 100, 100 ] );
vibrationManager.startVibrate( [ 75, 75 ] );
}
else {
vibrationManager.stopVibrate();
Expand Down

0 comments on commit 599732d

Please sign in to comment.