AAmol Jathar@ajathar956Followफ्री फिरी Sci-FiHindi41See who reacted (4)RelatedView allVVishal Parmar@vp945912Syahiusing UnityEngine; public class PlayerMovement : MonoBehaviour { public CharacterController controller; public float speed = 12f; public float gravity = -9.81f; public float jumpHeight = 3f; Vector3 velocity; bool isGrounded; public Transform groundCheck; public float groundDistance = 0.4f; public object groundMask; void Update() { // चेक करें कि प्लेयर जमीन पर है या नहीं isGrounded = Physics.CheckSphere(groundCheck.position, groundDistance, (LayerMask)groundMask); if (isGrounded && velocity.y < 0) { velocity.y = -2f; } // कीबोर्ड इनपुट (WASD या Arrow Keys) float x = Input.GetAxis("Horizontal"); float z = Input.GetAxis("Vertical"); Vector3 move = transform.right * x + transform.forward * z; controller.Move(move * speed * Time.deltaTime); // कूदने (Jump) के लिए कोड if (Input.GetButtonDown("Jump") && isGrounded) { velocity.y = Mathf.Sqrt(jumpHeight * -2f * gravity); } // ग्रेविटी (गुरुत्वाकर्षण) लगाना velocity.y += gravity * Time.deltaTime; controller.Move(velocity * Time.deltaTime); } } 8/13/202670NNikhil Yadav@yadavnikkhilBas ek prompt likho, aur video khud kahani ban jaaye8/3/2026164MMahesh@mahesher99IndianTapToto3D/ ├── Assets/ ├── Scripts/ ├── Cars/ ├── NPC/ ├── Player/ ├── House/ ├── UI/ └── Scenes/7/20/2026321HHarindu Harindu@harinduharinA single neutron collides with uranium, and the nucleus decides to split the future.6/3/202611CChhinder Singh@chhindersingai video 5/5/2026151DDambar Saud@dambarsaud01This section uses our Ai called alyana to help you draft your perfect post.alyana improve your post if necessary and returns it back for you to decide what you want to proceed with 1/8/20261CChem@knowledgeinfThe branch of science which deals with the quantitative relationship between heat and other forms of energies is called thermodynamics. 12/31/2025VVijendra Gupta@vijendra_vg12Aawazthe unjust or prejudicial treatment of different categories of people, especially on the grounds of ethnicity, age, sex, or disability.12/15/20251CommentsPostNo comments yet.