コード例 #1
0
ファイル: VRInteraction.cs プロジェクト: deborasal/RV_VIVE
    public bool CanManipulate(Interactable interactable)
    {
        if (interactable == null || currManipulatedInteractable != null)
        {
            return(false);
        }

        SelectInteractableFromRange();
        return(interactable == currSelectedInteractable && interactable.CanBeManipulated(interactionPoint));
    }