- Home /
Question by
nhono99 · May 22, 2018 at 11:57 AM ·
rigidbodyrigidbody.addforcerigidbody.velocity
Rigidbody velocity slow on mobile device
void Jump(){
rb.velocity = new Vector3(Random.Range(-1,1), 1, 0).normalized * power);
rb.angularVelocity = Vector3.zero;
}
*gravity is checked. *drag 1 *angularDrag 1
This code make my game object jump at random direction at random time(0.1f, 5f) but its movement is slow on android device. Using addForce will make the object accelerate faster which is not desired.
Work around?
Comment
Your answer
Follow this Question
Related Questions
Moving rigidbody (Player) with addForce or Velocity ? 1 Answer
How to move Character with Addforce? 1 Answer
Rigidbody slows down while turning using torque 1 Answer
Added force to rigid body, but wont move same speed as horizontal speed... if rotating 1 Answer
how to have a fixed movement using rigidbodies without animations 0 Answers