fr.jeanf.universal.player 0.7.7 → 0.8.0

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.
Files changed (55) hide show
  1. package/Editor/CreateEventChannelsEditor.cs +1 -3
  2. package/Editor/CreatePlayerActionsEditor.cs +1 -3
  3. package/Editor/CreateVRHands.cs +1 -1
  4. package/Editor/CreateVrPlayer.cs +1 -2
  5. package/Runtime/Shaders/Hands_ShaderGraph.shadergraph +273 -3221
  6. package/Runtime/scripts/ActionManagement/ActionContainerSO.cs +1 -2
  7. package/Runtime/scripts/ActionManagement/ActionRebinder.cs +1 -2
  8. package/Runtime/scripts/ActionManagement/ActionSO.cs +1 -1
  9. package/Runtime/scripts/ActionManagement/InputActionManager.cs +1 -3
  10. package/Runtime/scripts/ActionManagement/PlayerActionManager.cs +1 -4
  11. package/Runtime/scripts/ActionManagement/PlayerInputEventManager.cs +1 -1
  12. package/Runtime/scripts/ActionManagement/PlayerInputInterface.cs +1 -3
  13. package/Runtime/scripts/ActionManagement/XR Debugger.cs +1 -3
  14. package/Runtime/scripts/Basics/MainMenuController.cs +1 -1
  15. package/Runtime/scripts/Basics/PrimaryItemController.cs +1 -1
  16. package/Runtime/scripts/Fade/FadeMask.cs +1 -1
  17. package/Runtime/scripts/FireEventOnTrigger.cs +1 -1
  18. package/Runtime/scripts/Gaze/CursorStateController.cs +1 -1
  19. package/Runtime/scripts/Gaze/FPSCameraMovement.cs +1 -1
  20. package/Runtime/scripts/Gaze/NoPeeking.cs +1 -2
  21. package/Runtime/scripts/HandInteraction/BlendableHand.cs +1 -1
  22. package/Runtime/scripts/HandInteraction/Core/HandPoseManager.cs +1 -1
  23. package/Runtime/scripts/HandInteraction/Core/HandsPhysics.cs +1 -1
  24. package/Runtime/scripts/HandInteraction/Editor/PoseContainerEditor.cs +1 -1
  25. package/Runtime/scripts/HandInteraction/Editor/PoseWindow.cs +1 -1
  26. package/Runtime/scripts/HandInteraction/GetPrimaryInHandItemWithVRController.cs +1 -3
  27. package/Runtime/scripts/HandInteraction/HandData/XRBaseInteractorEventChannelSO.cs +1 -1
  28. package/Runtime/scripts/HandInteraction/HandData/XRBaseInteractorListener.cs +1 -2
  29. package/Runtime/scripts/HandInteraction/HandData/XRBaseInteractorSender.cs +1 -4
  30. package/Runtime/scripts/HandInteraction/HandPoser/Hands/GameplayHand.cs +1 -1
  31. package/Runtime/scripts/HandInteraction/HandPoser/Hands/HandsDisplayer.cs +25 -25
  32. package/Runtime/scripts/HandInteraction/HandPoser/Pose/PoseContainer.cs +1 -2
  33. package/Runtime/scripts/HandInteraction/HandPoser/Pose/PoseHelper/SelectionHandler.cs +1 -1
  34. package/Runtime/scripts/HandInteraction/HandsAppearanceManager.cs +1 -1
  35. package/Runtime/scripts/HandInteraction/HandsStateController.cs +1 -1
  36. package/Runtime/scripts/HandInteraction/KeyboardGrab.cs +1 -1
  37. package/Runtime/scripts/HandInteraction/Locomotion/BindTeleportationAreaToInteractionManager.cs +1 -1
  38. package/Runtime/scripts/HandInteraction/PerformAction.cs +53 -53
  39. package/Runtime/scripts/HandInteraction/PickableObject.cs +1 -1
  40. package/Runtime/scripts/HandInteraction/PointOnCollisionTriggerWhenGrab.cs +1 -1
  41. package/Runtime/scripts/HandInteraction/PointingPoseManager.cs +37 -37
  42. package/Runtime/scripts/HandInteraction/SetPoseOnTrigger.cs +1 -1
  43. package/Runtime/scripts/HandInteraction/TakeObject.cs +1 -1
  44. package/Runtime/scripts/HandInteraction/XRHandsInteractionManager.cs +1 -2
  45. package/Runtime/scripts/Hmd/BroadcastControlsStatus.cs +2 -6
  46. package/Runtime/scripts/MainCameraTarget.cs +1 -1
  47. package/Runtime/scripts/Movement/PlayerMovement.cs +1 -1
  48. package/Runtime/scripts/OrientObjectAlongTowardPoint.cs +1 -1
  49. package/Runtime/scripts/SnapObject/SnapObject.cs +1 -1
  50. package/Runtime/scripts/SnapObject/SnapZone.cs +1 -1
  51. package/Runtime/scripts/Teleportation/SendTeleportTarget.cs +1 -1
  52. package/Runtime/scripts/Teleportation/TeleportManager.cs +1 -1
  53. package/Runtime/scripts/Teleportation/TeleportOnEvent.cs +1 -1
  54. package/Runtime/scripts/Tooltips/InputTooltipSO.cs +1 -1
  55. package/package.json +1 -1
@@ -1,9 +1,7 @@
1
- using System.Collections;
2
- using System.Collections.Generic;
3
1
  using UnityEngine;
4
2
  using UnityEditor;
5
3
 
6
- namespace jeanf.vrplayer
4
+ namespace jeanf.universalplayer
7
5
  {
8
6
  [CustomEditor(typeof(PlayerInputEventManager))]
9
7
  public class CreateEventChannelsEditor : Editor
@@ -1,9 +1,7 @@
1
- using System.Collections;
2
- using System.Collections.Generic;
3
1
  using UnityEngine;
4
2
  using UnityEditor;
5
3
 
6
- namespace jeanf.vrplayer
4
+ namespace jeanf.universalplayer
7
5
  {
8
6
  [CustomEditor(typeof(PlayerActionManager))]
9
7
  public class CreatePlayerActionsEditor : Editor
@@ -4,7 +4,7 @@
4
4
  //using UnityEditor;
5
5
  //using UnityEngine.XR.Interaction.Toolkit.Samples.Hands;
6
6
 
7
- //namespace jeanf.vrplayer
7
+ //namespace jeanf.universalplayer
8
8
  //{
9
9
  // [CustomEditor(typeof(HandsAndControllersManager))]
10
10
  // public class CreateVRHands : Editor
@@ -1,8 +1,7 @@
1
1
  using UnityEngine;
2
2
  using UnityEditor;
3
3
  using Unity.XR.CoreUtils;
4
- using jeanf.EventSystem;
5
- namespace jeanf.vrplayer {
4
+ namespace jeanf.universalplayer {
6
5
  public class CreateVrPlayer : MonoBehaviour
7
6
  {
8
7
  //private static VoidEventChannelSO playerCreatedEventChannel;