Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 Unity3DJava · Nov 12, 2013 at 02:56 AM · jumpslidewalljump

Wall Jump Instead of Sliding up

I have a player script for my 2d platformer that when you touch a wall instead of wall jumping the player will just slide up the wall, how can I tweak the script in order to make my player formally wall jump?

Script:

using UnityEngine; using System.Collections;

public class PlayerScript : MonoBehaviour { public float speed = 500.0f; public float JumpSpeed = 100.0f; private bool isGrounded = false; public float gravity = 20; void Update() {

  //transform.position += new Vector3(Input.GetAxis("Horizontal"),0,0);
     if(Input.GetKey(KeyCode.S))
     {
     rigidbody.AddForce(0,-7,0);    
     }
     if(Input.GetKey (KeyCode.A)){
         transform.Translate(new Vector3(-1,0,0) * Time.deltaTime * speed);
     }
     if(Input.GetKey (KeyCode.D))
     {
         transform.Translate(new Vector3(1,0,0) * Time.deltaTime * speed);
     }
 if (isGrounded && Input.GetButton("Jump")) 
     Jump();
 }
 

void OnCollisionStay() {

 isGrounded = true;
 

}

void Jump() { rigidbody.velocity = Vector3.zero; rigidbody.angularVelocity = Vector3.zero;
isGrounded = false;

 rigidbody.AddForce(Vector3.up *JumpSpeed);
 rigidbody.AddForce(0,-5,0);    
 

}

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

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by yoshimoto555 · Nov 12, 2013 at 04:26 AM

In my game, when the player jumps on a wall, I decrease gravity significantly, to give an effect of sliding down the wall.

In order to stop the wall sliding up, don't let an upward force be applied to the player if they are not grounded to the floor. If they are grounded to the wall, then make it so that when the player presses jump, a force opposite of the direction of the wall is applied so that the player is pushed away from the wall when they jump. At the same time, allow the player to make his way back to the wall.

Comment
Add comment · Share
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

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

17 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Wall Jumping Help 1 Answer

Creating a Wall Jump (Absolutely new to C#) 0 Answers

Adding force to the charactercontroller for walljump 1 Answer

Unity2D Platformer - Wall jumping with unity's physics 1 Answer

3d wall jumping with charter controller 1 Answer


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