Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by Maetag · May 30, 2017 at 06:24 AM · movementgravityjumpingcontrolrigidbodies

Character drops from air when using velocity Jump and transform.translate direction after releasing W key

Yet another jump-jet rendition needing to maneuver a character while in the air. The problem I am facing is that while pressing forward on my character and jumping, everything is great up until I release the forward (W) key. At this point it drops like a stone instead of continuing to move forward while drifting back down to the ground.

I am using transform.Translate on the ground and I know this is where the problem is since there is no forces applied to the rigidbody to keep it going forward in the air. But I'm having trouble figuring out the most appropriate/cleanest/elegant way of coding this. I've looked at potentially using CharacterController, but I'd like to handle this outside of controllers if possible.

Here's the snip of relevant code...

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 
 public class PlayerControl : MonoBehaviour {
 
     public float MoveSpeed = 20f;
     public float JumpForce = 15f;
 
     Rigidbody rb;
     
     void Start ()
     {
       rb = GetComponent<Rigidbody>();
     }
     
     void Update ()
     {
       // move player around
       float moveVert = Input.GetAxis("Vertical") * MoveSpeed ;
       float moveHorz = Input.GetAxis("Horizontal") * MoveSpeed ;
     
       moveVert *= Time.deltaTime;
       moveHorz *= Time.deltaTime;
 
       transform.Translate (moveHorz, 0, moveVert);
     }
     
     void FixedUpdate () 
     {
       // jump using rigidbody force
       if (Input.GetButtonDown("Jump"))
         rb.velocity += Vector3.up * JumpForce;
     }
 
 }


In completion, the character will be skating, jump-jetting, and also have a short-burst propulsion pack to propel the character toward the direction they are facing.

Any suggestions on best methods to work with the problem I'm facing above?

Thanks for any input and let me know if I missed some details!

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

3 People are following this question.

avatar image avatar image avatar image

Related Questions

How to make camera position relative to a specific target. 1 Answer

Player Character looses jump height the further right they go 1 Answer

Why does this piece of code work with gravity and this one dosent 2 Answers

Turning to face movement direction 0 Answers

Rigidbody--Addforce on a Spherical Platform(A Globe) 2 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges