Увеличена громкость и убран на меню прозрачность

This commit is contained in:
2025-01-29 14:25:52 +03:00
parent 765940c2c1
commit b71551b827
6 changed files with 83 additions and 5 deletions

View 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)
}
}