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.
- package/Editor/CreateEventChannelsEditor.cs +1 -3
- package/Editor/CreatePlayerActionsEditor.cs +1 -3
- package/Editor/CreateVRHands.cs +1 -1
- package/Editor/CreateVrPlayer.cs +1 -2
- package/Runtime/Shaders/Hands_ShaderGraph.shadergraph +273 -3221
- package/Runtime/scripts/ActionManagement/ActionContainerSO.cs +1 -2
- package/Runtime/scripts/ActionManagement/ActionRebinder.cs +1 -2
- package/Runtime/scripts/ActionManagement/ActionSO.cs +1 -1
- package/Runtime/scripts/ActionManagement/InputActionManager.cs +1 -3
- package/Runtime/scripts/ActionManagement/PlayerActionManager.cs +1 -4
- package/Runtime/scripts/ActionManagement/PlayerInputEventManager.cs +1 -1
- package/Runtime/scripts/ActionManagement/PlayerInputInterface.cs +1 -3
- package/Runtime/scripts/ActionManagement/XR Debugger.cs +1 -3
- package/Runtime/scripts/Basics/MainMenuController.cs +1 -1
- package/Runtime/scripts/Basics/PrimaryItemController.cs +1 -1
- package/Runtime/scripts/Fade/FadeMask.cs +1 -1
- package/Runtime/scripts/FireEventOnTrigger.cs +1 -1
- package/Runtime/scripts/Gaze/CursorStateController.cs +1 -1
- package/Runtime/scripts/Gaze/FPSCameraMovement.cs +1 -1
- package/Runtime/scripts/Gaze/NoPeeking.cs +1 -2
- package/Runtime/scripts/HandInteraction/BlendableHand.cs +1 -1
- package/Runtime/scripts/HandInteraction/Core/HandPoseManager.cs +1 -1
- package/Runtime/scripts/HandInteraction/Core/HandsPhysics.cs +1 -1
- package/Runtime/scripts/HandInteraction/Editor/PoseContainerEditor.cs +1 -1
- package/Runtime/scripts/HandInteraction/Editor/PoseWindow.cs +1 -1
- package/Runtime/scripts/HandInteraction/GetPrimaryInHandItemWithVRController.cs +1 -3
- package/Runtime/scripts/HandInteraction/HandData/XRBaseInteractorEventChannelSO.cs +1 -1
- package/Runtime/scripts/HandInteraction/HandData/XRBaseInteractorListener.cs +1 -2
- package/Runtime/scripts/HandInteraction/HandData/XRBaseInteractorSender.cs +1 -4
- package/Runtime/scripts/HandInteraction/HandPoser/Hands/GameplayHand.cs +1 -1
- package/Runtime/scripts/HandInteraction/HandPoser/Hands/HandsDisplayer.cs +25 -25
- package/Runtime/scripts/HandInteraction/HandPoser/Pose/PoseContainer.cs +1 -2
- package/Runtime/scripts/HandInteraction/HandPoser/Pose/PoseHelper/SelectionHandler.cs +1 -1
- package/Runtime/scripts/HandInteraction/HandsAppearanceManager.cs +1 -1
- package/Runtime/scripts/HandInteraction/HandsStateController.cs +1 -1
- package/Runtime/scripts/HandInteraction/KeyboardGrab.cs +1 -1
- package/Runtime/scripts/HandInteraction/Locomotion/BindTeleportationAreaToInteractionManager.cs +1 -1
- package/Runtime/scripts/HandInteraction/PerformAction.cs +53 -53
- package/Runtime/scripts/HandInteraction/PickableObject.cs +1 -1
- package/Runtime/scripts/HandInteraction/PointOnCollisionTriggerWhenGrab.cs +1 -1
- package/Runtime/scripts/HandInteraction/PointingPoseManager.cs +37 -37
- package/Runtime/scripts/HandInteraction/SetPoseOnTrigger.cs +1 -1
- package/Runtime/scripts/HandInteraction/TakeObject.cs +1 -1
- package/Runtime/scripts/HandInteraction/XRHandsInteractionManager.cs +1 -2
- package/Runtime/scripts/Hmd/BroadcastControlsStatus.cs +2 -6
- package/Runtime/scripts/MainCameraTarget.cs +1 -1
- package/Runtime/scripts/Movement/PlayerMovement.cs +1 -1
- package/Runtime/scripts/OrientObjectAlongTowardPoint.cs +1 -1
- package/Runtime/scripts/SnapObject/SnapObject.cs +1 -1
- package/Runtime/scripts/SnapObject/SnapZone.cs +1 -1
- package/Runtime/scripts/Teleportation/SendTeleportTarget.cs +1 -1
- package/Runtime/scripts/Teleportation/TeleportManager.cs +1 -1
- package/Runtime/scripts/Teleportation/TeleportOnEvent.cs +1 -1
- package/Runtime/scripts/Tooltips/InputTooltipSO.cs +1 -1
- 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.
|
|
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.
|
|
4
|
+
namespace jeanf.universalplayer
|
|
7
5
|
{
|
|
8
6
|
[CustomEditor(typeof(PlayerActionManager))]
|
|
9
7
|
public class CreatePlayerActionsEditor : Editor
|
package/Editor/CreateVRHands.cs
CHANGED
package/Editor/CreateVrPlayer.cs
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
using UnityEngine;
|
|
2
2
|
using UnityEditor;
|
|
3
3
|
using Unity.XR.CoreUtils;
|
|
4
|
-
|
|
5
|
-
namespace jeanf.vrplayer {
|
|
4
|
+
namespace jeanf.universalplayer {
|
|
6
5
|
public class CreateVrPlayer : MonoBehaviour
|
|
7
6
|
{
|
|
8
7
|
//private static VoidEventChannelSO playerCreatedEventChannel;
|