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 Oobi23 · Apr 24, 2013 at 12:29 PM · jumpcharacter movement

Character Jump

we have our character moving about the way we want it to in orthographic camera view. Here is the coding so far. any help is greatly appreciated. :) PS: I am not using character controller that comes with unity and not using rigidbody

 private var insideObject:Transform;
 
 // The gravity for the character
 var gravity = 20.0;
 
 
 
 function Start(){
     insideObject=transform.Find("Capsule");
     
 }
 function Update () {
     Debug.Log(insideObject.rotation.eulerAngles);
 var dwn = transform.TransformDirection (Vector3.down);
     
 if (Input.GetKeyDown(KeyCode.UpArrow)) {
 
 var fwd = transform.TransformDirection (Vector3.forward);
         if (Physics.Raycast (transform.position, fwd, 1)) {
             print ("There is something in front of the object!");
         }else{
             var forwardPos:Vector3=transform.position + Vector3.forward;
             if (Physics.Raycast (forwardPos,dwn, 1)) {
                 transform.position += Vector3.forward;
             }
             
         }
 }
 
 if (Input.GetKeyDown(KeyCode.DownArrow)) {
 
 
     
         var bk = transform.TransformDirection (Vector3.back);
         if (Physics.Raycast (transform.position, bk, 1)) {
             print ("There is something in front of the object!");
         }else{
             var backPos:Vector3=transform.position + Vector3.back;
             if (Physics.Raycast (backPos,dwn, 1)) {
                 transform.position += Vector3.back;
             }
             
         }
 }
 if (Input.GetKeyDown(KeyCode.RightArrow)) {
 
 
 var r = transform.TransformDirection (Vector3.right);
         if (Physics.Raycast (transform.position, r, 1)) {
             print ("There is something in front of the object!");
         }else{
             var targPos:Vector3=transform.position + Vector3.right;
             if (Physics.Raycast (targPos,dwn, 1)) {
                 transform.position += Vector3.right;
             }
             
         }
         
     insideObject.rotation.eulerAngles.y=90;
 }
 if (Input.GetKeyDown(KeyCode.LeftArrow)) {
 
 var l = transform.TransformDirection (Vector3.left);
         if (Physics.Raycast (transform.position, l, 1)) {
             print ("There is something to the left of the object!");
         }else{
             var leftPos:Vector3=transform.position + Vector3.left;
             if (Physics.Raycast (leftPos,dwn, 1)) {
                 transform.position += Vector3.left;
             }
             
         }
 insideObject.rotation.eulerAngles.y=-90;
 }
 
 
 
 
 }
 
 
 
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 OpenCoffee · Apr 24, 2013 at 01:09 PM

Hello there!

...and nice piece of controller. Putting a little more time on the formating next time would be great :)


Anyhow, I think that you should check this out:

Unity Answer Character Jump

Comment
Add comment · Show 1 · 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
avatar image Oobi23 · Apr 24, 2013 at 01:18 PM 0
Share

thanks, but i am not using character controller that comes with unity and am not using rigidbody. thus, i need faux gravity and what not.

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

12 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

Related Questions

jump with character controller best way? 1 Answer

,How to disable autojumping when holding spacebar? 4 Answers

Head bob script overrides ability to jump,Not able to jump with Head bobbing script 1 Answer

My jumping script isn't working, And it isn't giving me any errors,My character isn't jumping, But I don't get any errors 1 Answer

My character cant jump 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