- Home /
how to jump with 2d?
i read tutorials and searched but nothing works. could someone tell me how make my character jump, please! Thanks!
Script:
var jumpSpeed = 8.0;
var gravity = 20.0;
private var moveDirection = Vector3.zero;
function FixedUpdate() {
var controller : CharacterController = GetComponent(CharacterController);
if (controller.isGrounded) { // We are grounded, so recalculate
// move direction directly from axes
moveDirection = Vector3(Input.GetAxis("Horizontal"), 0,
Input.GetAxis("Vertical"));
moveDirection = transform.TransformDirection(moveDirection);
moveDirection *= speed;
if (Input.GetButton ("Jump")) { moveDirection.y = jumpSpeed; } }
// Apply gravity moveDirection.y -= gravity * Time.deltaTime;
// Move the controller controller.Move(moveDirection * Time.deltaTime);
}
Answer by Roux69 · Aug 20, 2010 at 06:14 PM
Your question lacks detail. Right now there is nothing to do because I don't know how your script is made. Specificity is your friend, even more if you show that you're working hard and not waiting for someone to hand to you a ready to work code.
The 2D tutorial works. http://unity3d.com/support/resources/tutorials/2d-gameplay-tutorial
What I suggest is to open the tutorial's demo project and look at the character controller script. See how the jumping works(variables and functions) and try to add it to your own script. Once you've done that, if it still doesn't work, then show us a little of your script and enough detail so that we can help you find what is missing.
if you have a hard time understanding this, look for beginners's tutorials for scripting. They will greatly help, as well as the unity scripting reference.
I too am new to Unity and the first thing I do is to read all that I can see and find relevant. Look through the questions, there are surely a few talking about jumping. And also, it would help to look at how the questions are formulated. There are some questions that will never get an answer because of what I said above.
Good Luck
I READ TUTORIALS as I SAID IN $$anonymous$$Y QUESTION BEFORE BUT IT JUST DOESN'T WOR$$anonymous$$. I ADDED $$anonymous$$Y SCRIPT!!!!!!!!
First: please do not write in caps, it's very irritating. Second, I'm not home at the moment, I'll look into it tonight.
Your answer
Follow this Question
Related Questions
Adding a jump feature help? 2 Answers
Setting Scroll View Width GUILayout 1 Answer
Can someone help me fix my Javascript for Flickering Light? 6 Answers
Help with my double jump script 1 Answer