Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 /
This question was closed Jan 14, 2016 at 09:01 PM by dandelo99 for the following reason:

Other

avatar image
0
Question by dandelo99 · Jan 10, 2016 at 06:00 PM · javascriptcollidersladder

Player stucks on ladder (with picture)

I have ladder script and it is work properly but when climbing down i have some bugs like the picture my player couldn't away from ladder i know i need add something stop the player when reach bottom to script but i dont know what it is. how can i fix thisalt text

Green is the ground and red is the player

This is the script;

 #pragma strict
 
 var ChController : Transform;
 var heightFactor : float = 3.2;
 private var inside = false;
 
 private var FPSInput : FPSWalkerEnhanced;
 
 function Start ()
 {
     FPSInput = GameObject.Find("Player").GetComponent(FPSWalkerEnhanced);
 }
 
 function OnTriggerEnter (Col : Collider)
 {
     if (Col.tag == "Player");
     {
         FPSInput.enabled = false;
         inside = true;
     }
 }
 
 function OnTriggerExit (Col : Collider)
 {
     if (Col.tag == "Player");
     {
         FPSInput.enabled = true;
         inside = false;
     }
 }
 
 function Update()
 {
     if (inside == true && Input.GetKey("w"))
     {
         ChController.transform.position += Vector3.up / heightFactor;
     }
         if (inside == true && Input.GetKey("s"))
     {
         ChController.transform.position += Vector3.down / heightFactor;
     }
 }
ladderfail.png (16.5 kB)
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

  • Sort: 
avatar image
0

Answer by vintar · Jan 10, 2016 at 09:37 PM

You would need to check if the player is colliding with the ground and then stop moving down :

 if (!grounded && inside == true && Input.GetKey("s"))
Comment
Add comment · Show 3 · 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 dandelo99 · Jan 10, 2016 at 10:14 PM 0
Share

Can you add this my script because i don't have any idea how can i do this i am a newbie

avatar image hulahoolgames dandelo99 · Jan 10, 2016 at 10:16 PM 0
Share

Character controller has this property. You can just use this to check if character is grounded.

avatar image dandelo99 hulahoolgames · Jan 11, 2016 at 09:05 AM 0
Share

when i add that code on my script scene is crushes. might be a infinite loop or something like that i delete the code crush fixed.

Follow this Question

Answers Answers and Comments

37 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 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 avatar image avatar image avatar image

Related Questions

Accessing Colliders in IF statement from PARENT Object. 1 Answer

Slower Ladder 2 Answers

Building a Snap System, Need Help 1 Answer

How to make the player turn left or right only in desired places o edges and not everywhere ???? 0 Answers

How to detect when two gameObjects collide by name {java, 2d} 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