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 Cl0ud · Sep 14, 2014 at 08:40 PM · speedheightcrouchbackwardscrouching

Strange problem with crouch script

Hello everyone, I'm having trouble with this script that allow the player to crouch. I just can't figure out why my charachter can't move left, right or back but just forward... It is also strange because the Max Forward Speed, the Max Sideways Speed and the Max Backwards Speed values of the Character Motor are changing according to the script! So the problem is not here, I guess!

Maybe I should create a new state when the player is chouched?

However this is the script, i hope that someone can hepl me! :)

 //What is doing the player?
 var PlayerState : float;
 
 //The Player Character Motor 
 var PlayerMotor : CharacterMotor;
 
 //Different speed for different action
 var WalkingSpeed : float = 8;
 var SprintingSpeed : float = 10;
 var CrouchSpeed : float = 5;
 var LooseStamina : float;
 var LightArmorWalkingSpeed : float = 7;
 var LightArmorSprintingSpeed : float = 9;
 var LightArmorCrouchSpeed : float = 4;
 var LightArmorLooseStamina : float;
 var MediumArmorWalkingSpeed : float = 6;
 var MediumArmorSprintingSpeed : float = 8;
 var MediumArmorCrouchSpeed : float = 3;
 var MediumArmorLooseStamina : float;
 var HeavyArmorWalkingSpeed : float = 5;
 var HeavyArmorSprintingSpeed : float = 7;
 var HeavyArmorCrouchSpeed : float = 2;
 var HeavyArmorLooseStamina : float;
 var HealthAndArmorScript : HealthArmorStaminaLuck;
 
 
 //Important thing for crouch
 private var charController : CharacterController;
 private var theTransform : Transform;
 private var charHeight : float;
 var isCrouched : boolean;
 
 //Other Stuff
 var PlayerBossController : CharacterController;
 var CharacterMag;
 var CharacterMotorScript : CharacterMotor;
 
 function Start () 
 {
     theTransform = transform;
     charController = GetComponent(CharacterController);
     charHeight = charController.height;
 }
 
 function Update () 
 {
     //This is for the crouch
     var h = charHeight;
     
     if (Input.GetButton("Crouch"))
     {
         h = charHeight * 0.5;
         isCrouched = true;
     }
     
     else 
     {
          isCrouched = false;
     }
     
     var lastHeight = charController.height; //Stand up/crouch smoothly
     charController.height = Mathf.Lerp(charController.height, h, 5 * Time.deltaTime);
     theTransform.position.y += (charController.height-lastHeight)/2; //Fix vertical position
     
     //Calling other function. See them for more information.
     PlayerStateController();
     PlayerStates();
     CharacterMag = PlayerBossController.velocity.magnitude;
 }
 
 function PlayerStateController()
 {
     if ((Input.GetAxis("Vertical") !=0 || Input.GetAxis("Horizontal") !=0) && Input.GetButton("Sprint") && PlayerBossController.isGrounded)
         {
         PlayerState = 2;
         } 
     else
     {
     PlayerState = 1;
     }
 }
 
 function PlayerStates ()
 {
     if (PlayerState == 1 && PlayerBossController.isGrounded && HealthAndArmorScript.NoArmor == true && isCrouched == false)
     {
     //PlayerAnimSec.animation["Walking Animation"].speed = CharacterMag/WalkingSpeed;
     //PlayerAnimSec.animation.CrossFade("Walking Animation");
     HealthAndArmorScript.CanRegen = true;
     PlayerMotor.movement.maxForwardSpeed = WalkingSpeed;
     PlayerMotor.movement.maxBackwardsSpeed = WalkingSpeed/2;
     PlayerMotor.movement.maxSidewaysSpeed = WalkingSpeed/1.25;    
     }    
     
     else if (PlayerState == 1 && PlayerBossController.isGrounded && HealthAndArmorScript.NoArmor == true && isCrouched == true)
     {
     //PlayerAnimSec.animation["Walking Animation"].speed = CharacterMag/WalkingSpeed;
     //PlayerAnimSec.animation.CrossFade("Walking Animation");
     HealthAndArmorScript.CanRegen = true;
     PlayerMotor.movement.maxForwardSpeed = CrouchSpeed;
     PlayerMotor.movement.maxBackwardsSpeed = CrouchSpeed/2.15;
     PlayerMotor.movement.maxSidewaysSpeed = CrouchSpeed/1.55;    
     }
 }
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

2 People are following this question.

avatar image avatar image

Related Questions

Need help with crouching,Problem with crouching 1 Answer

How can i stop my Third person character from crouching from a weapon i placed in his hand? 0 Answers

Animation Speed Problem 2 Answers

How can I get mesh height? 0 Answers

Movement Backwards is Slower 0 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