Увеличена громкость и убран на меню прозрачность
This commit is contained in:
parent
765940c2c1
commit
b71551b827
@ -2424,6 +2424,7 @@ GameObject:
|
|||||||
- component: {fileID: 6816638489069482198}
|
- component: {fileID: 6816638489069482198}
|
||||||
- component: {fileID: 5964534008193362612}
|
- component: {fileID: 5964534008193362612}
|
||||||
- component: {fileID: 3203601341080865406}
|
- component: {fileID: 3203601341080865406}
|
||||||
|
- component: {fileID: 3397185174789479497}
|
||||||
m_Layer: 0
|
m_Layer: 0
|
||||||
m_Name: XR Origin (XR Rig)
|
m_Name: XR Origin (XR Rig)
|
||||||
m_TagString: Player
|
m_TagString: Player
|
||||||
@ -2616,6 +2617,35 @@ MonoBehaviour:
|
|||||||
IsRecovering: 0
|
IsRecovering: 0
|
||||||
RecoveryTimer: 0
|
RecoveryTimer: 0
|
||||||
_IsPreRecovery: 0
|
_IsPreRecovery: 0
|
||||||
|
--- !u!114 &3397185174789479497
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 7147664097568639172}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 53004812adcae72458f6ee795a7354df, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
_JumpButton:
|
||||||
|
m_UseReference: 0
|
||||||
|
m_Action:
|
||||||
|
m_Name: Jump Button
|
||||||
|
m_Type: 0
|
||||||
|
m_ExpectedControlType:
|
||||||
|
m_Id: 3a8ca516-8592-460e-937a-2deba90edab4
|
||||||
|
m_Processors:
|
||||||
|
m_Interactions:
|
||||||
|
m_SingletonActionBindings: []
|
||||||
|
m_Flags: 0
|
||||||
|
m_Reference: {fileID: 0}
|
||||||
|
_JumpHeight: 0
|
||||||
|
_CharacterController: {fileID: 0}
|
||||||
|
_GroundLayers:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Bits: 0
|
||||||
--- !u!1 &7658757051952670264
|
--- !u!1 &7658757051952670264
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
@ -909,7 +909,7 @@ MonoBehaviour:
|
|||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_Material: {fileID: 0}
|
m_Material: {fileID: 0}
|
||||||
m_Color: {r: 0.27450982, g: 0.54509807, b: 1, a: 0.392}
|
m_Color: {r: 0.27450982, g: 0.54509807, b: 1, a: 1}
|
||||||
m_RaycastTarget: 1
|
m_RaycastTarget: 1
|
||||||
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
||||||
m_Maskable: 1
|
m_Maskable: 1
|
||||||
|
@ -167,7 +167,7 @@ AudioSource:
|
|||||||
OutputAudioMixerGroup: {fileID: 0}
|
OutputAudioMixerGroup: {fileID: 0}
|
||||||
m_audioClip: {fileID: 0}
|
m_audioClip: {fileID: 0}
|
||||||
m_PlayOnAwake: 1
|
m_PlayOnAwake: 1
|
||||||
m_Volume: 0.2
|
m_Volume: 0.5
|
||||||
m_Pitch: 1
|
m_Pitch: 1
|
||||||
Loop: 1
|
Loop: 1
|
||||||
Mute: 0
|
Mute: 0
|
||||||
|
17
Assets/PlayerJumpScript.cs
Normal file
17
Assets/PlayerJumpScript.cs
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
using System.Collections;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using UnityEngine;
|
||||||
|
using UnityEngine.InputSystem;
|
||||||
|
|
||||||
|
public class PlayerJumpScript : MonoBehaviour
|
||||||
|
{
|
||||||
|
[SerializeField] private InputActionProperty _JumpButton;
|
||||||
|
[SerializeField] private float _JumpHeight = 0f;
|
||||||
|
[SerializeField] private CharacterController _CharacterController;
|
||||||
|
[SerializeField] private LayerMask _GroundLayers;
|
||||||
|
|
||||||
|
private bool IsGrounded()
|
||||||
|
{
|
||||||
|
//return Physics.CheckSphere(transform)
|
||||||
|
}
|
||||||
|
}
|
11
Assets/PlayerJumpScript.cs.meta
Normal file
11
Assets/PlayerJumpScript.cs.meta
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 53004812adcae72458f6ee795a7354df
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
@ -687,7 +687,7 @@
|
|||||||
"name": "Select",
|
"name": "Select",
|
||||||
"type": "Button",
|
"type": "Button",
|
||||||
"id": "33754c03-48ec-46ef-9bc6-22ed6bfdd8e8",
|
"id": "33754c03-48ec-46ef-9bc6-22ed6bfdd8e8",
|
||||||
"expectedControlType": "Button",
|
"expectedControlType": "",
|
||||||
"processors": "",
|
"processors": "",
|
||||||
"interactions": "",
|
"interactions": "",
|
||||||
"initialStateCheck": false
|
"initialStateCheck": false
|
||||||
@ -1483,7 +1483,7 @@
|
|||||||
"name": "Select",
|
"name": "Select",
|
||||||
"type": "Button",
|
"type": "Button",
|
||||||
"id": "ac96c10b-c955-4a46-8e67-bf16bc069b53",
|
"id": "ac96c10b-c955-4a46-8e67-bf16bc069b53",
|
||||||
"expectedControlType": "Button",
|
"expectedControlType": "",
|
||||||
"processors": "",
|
"processors": "",
|
||||||
"interactions": "",
|
"interactions": "",
|
||||||
"initialStateCheck": false
|
"initialStateCheck": false
|
||||||
@ -1564,7 +1564,7 @@
|
|||||||
"name": "Scale Toggle",
|
"name": "Scale Toggle",
|
||||||
"type": "Button",
|
"type": "Button",
|
||||||
"id": "5ad73d15-99a4-4bce-a76f-f49815602416",
|
"id": "5ad73d15-99a4-4bce-a76f-f49815602416",
|
||||||
"expectedControlType": "Button",
|
"expectedControlType": "",
|
||||||
"processors": "",
|
"processors": "",
|
||||||
"interactions": "",
|
"interactions": "",
|
||||||
"initialStateCheck": false
|
"initialStateCheck": false
|
||||||
@ -1577,6 +1577,15 @@
|
|||||||
"processors": "",
|
"processors": "",
|
||||||
"interactions": "",
|
"interactions": "",
|
||||||
"initialStateCheck": true
|
"initialStateCheck": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Jump",
|
||||||
|
"type": "Button",
|
||||||
|
"id": "6f3ba83b-5a27-4d0c-ab18-c0d8a3bdafdf",
|
||||||
|
"expectedControlType": "",
|
||||||
|
"processors": "",
|
||||||
|
"interactions": "",
|
||||||
|
"initialStateCheck": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"bindings": [
|
"bindings": [
|
||||||
@ -1744,6 +1753,17 @@
|
|||||||
"action": "Scale Delta",
|
"action": "Scale Delta",
|
||||||
"isComposite": false,
|
"isComposite": false,
|
||||||
"isPartOfComposite": false
|
"isPartOfComposite": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "",
|
||||||
|
"id": "a8e593e4-9205-48c8-9286-603e076d5a31",
|
||||||
|
"path": "<XRController>{RightHand}/primaryButton",
|
||||||
|
"interactions": "",
|
||||||
|
"processors": "",
|
||||||
|
"groups": ";Generic XR Controller",
|
||||||
|
"action": "Jump",
|
||||||
|
"isComposite": false,
|
||||||
|
"isPartOfComposite": false
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user