示例#1
0
 private void ResetSpearOffset()
 {
     transform.position      = rotSave.transform.position;
     transform.localRotation = rotSave.transform.localRotation;
     isThrowingStance        = false;
     ShieldManager.ScaleShieldSize(1f);
 }
示例#2
0
 private void Awake()
 {
     _meshCooldown = gameObject.AddComponent <MeshCooldown>();
     instance      = this;
     posRef        = transform.localPosition;
     scaleRef      = transform.localScale;
 }
示例#3
0
        private void UpdateSecondHandAimCalculation()
        {
            Transform cameraHead = CameraUtils.getCamera(CameraUtils.VR_CAMERA).transform;
            var       direction  = VRPlayer.leftHand.transform.position - cameraHead.transform.position;

            if (!SteamVR_Actions.valheim_Grab.GetState(SteamVR_Input_Sources.RightHand))
            {
                startAim = Vector3.zero;
                ResetSpearOffset();
                return;
            }
            if (!isThrowingStance && !isThrowing)
            {
                UpdateDirectionLine(
                    VRPlayer.rightHand.transform.position,
                    VRPlayer.rightHand.transform.position + (direction).normalized * 50);
            }
            if (SteamVR_Actions.valheim_Use.GetStateDown(SteamVR_Input_Sources.RightHand))
            {
                if (startAim == Vector3.zero)
                {
                    startAim = direction.normalized;
                }
                isThrowingStance = true;
            }

            if (isThrowingStance)
            {
                ShieldManager.ScaleShieldSize(0.4f);
                UpdateSpearThrowModel(direction.normalized);
                UpdateDirectionLine(
                    VRPlayer.rightHand.transform.position - direction.normalized,
                    VRPlayer.rightHand.transform.position + direction.normalized * 50);
            }

            if (!SteamVR_Actions.valheim_Use.GetStateUp(SteamVR_Input_Sources.RightHand))
            {
                return;
            }

            if (snapshots.Count < MIN_SNAPSHOTSCHECK)
            {
                return;
            }

            if (isThrowing)
            {
                ResetSpearOffset();
                startAim = Vector3.zero;
                return;
            }

            spawnPoint = VRPlayer.rightHand.transform.position;
            var throwing = CalculateThrowAndDistance();

            aimDir = direction.normalized * throwing.ThrowSpeed;

            if (throwing.Distance > minDist)
            {
                isThrowing = true;
            }

            if (SteamVR_Actions.valheim_Use.GetStateUp(SteamVR_Input_Sources.RightHand) && throwing.Distance <= minDist)
            {
                startAim = Vector3.zero;
                ResetSpearOffset();
            }
        }