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 graham1989 · Oct 22, 2013 at 11:02 AM · vector3platformertranslate

Vector 3 help?

Ok I am making a platformer, similar to original tomb raider games, I have almost got my script done to make my character climb up the ledges but struggling to find the best way to do this.

Here is my script, at the moment when I press up when grabbing the character moves forward and up, I just need a way to stop the character when he moves up and forward the right distance to get up on the ledge. There is probably a really simple solution to this but just cant seem to think of what to do. Thanks for any help. (PS sorry if my script is messy im fairly new).

 var hit : RaycastHit;
 var player1 : GameObject;
 var cam1 : GameObject;
 var cam2 : GameObject;
 var guysGrabbin : boolean = false;
 var GrabHeight = 1.0;
 var upPressed : boolean = false;
 var startPos = new Vector3();
 var guysUp = false;
 var timer : float = 3;
 
 function Start () 
 {
     
 }
 
 function Update () 
 {
     if(Physics.Raycast(transform.position, transform.forward, hit, 2))
     {
         print(hit.collider.tag);
         Debug.DrawLine(transform.position, hit.collider.transform.position, Color.red);
     }
         
     startPos = player1.transform.position;
     
     
     Debug.Log(Time);
     
     if(upPressed == true)
     {
         player1.transform.Translate(Vector3.up * Time.deltaTime * 4);
         player1.transform.Translate(Vector3.forward * Time.deltaTime * 2);    
     }
     
     if(guysUp == true)
     {
             guysGrabbin = false;
             player1.GetComponent(CharacterMotor).enabled = true;
             player1.GetComponent(MouseLook).enabled = true;
             AnimationScript.StopAnimation = false;
             cam1.active = true;
             cam2.active = false;
             upPressed = false;
     }
     
     
     GrabHeight = hit.collider.transform.position.y - 2.47;
     
     
     if(upPressed == false)
     {
     if(hit.collider.tag == "GuyReached")
     {
         guysGrabbin = true;
         player1.GetComponent(CharacterMotor).enabled = false;
         player1.GetComponent(MouseLook).enabled = false;
         player1.transform.position.y = GrabHeight;
         AnimationScript.StopAnimation = true;
         cam1.active = false;
         cam2.active = true; 
     }
     }
     
     if(guysGrabbin == true)
     {
         if(Input.GetKeyUp(KeyCode.UpArrow))
         {
             guysGrabbin = false;
             upPressed = true;
             player1.GetComponent(CharacterMotor).enabled = false;
             player1.GetComponent(MouseLook).enabled = false;
             AnimationScript.StopAnimation = false;
             cam1.active = true;
             cam2.active = false;            
         }
     }
     
     
     if(guysGrabbin == true)
     {
         if(Input.GetKeyUp(KeyCode.DownArrow))
         {
             guysGrabbin = false;
             player1.GetComponent(CharacterMotor).enabled = true;
             player1.GetComponent(MouseLook).enabled = true;
             AnimationScript.StopAnimation = false;
             cam1.active = true;
             cam2.active = false;
         }
     }
 }
 
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

14 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

Related Questions

Problems with pathfinding algorithm 0 Answers

Fading between two numbers at a speed I choose 3 Answers

UnityEngine.Component:get_transform() Error 1 Answer

How to get translation from matrix? 1 Answer

Different between transform.Translate() and Vector3.MoveTowards? 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