com.puzzlescapegames.services 1.0.6 → 1.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,9 +9,9 @@ namespace PuzzlescapeGames.Services.VibrationService
9
9
 
10
10
  public void Vibrate()
11
11
  {
12
- #if UNITY_IOS
12
+ #if UNITY_IOS && !UNITY_EDITOR
13
13
  Vibration.VibrateIOS( ImpactFeedbackStyle.Soft );
14
- #elif UNITY_ANDROID
14
+ #elif UNITY_ANDROID && !UNITY_EDITOR
15
15
  Vibration.VibratePop();
16
16
  #endif
17
17
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name" : "com.puzzlescapegames.services",
3
3
  "displayName" : "Puzzlescape Games Services",
4
- "version" : "1.0.6",
4
+ "version" : "1.0.7",
5
5
  "author" : "Puzzlescape Games",
6
6
  "description" : "Common services.",
7
7
  "repository": {