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 Harry64 · Jan 19, 2013 at 07:00 PM · lerpspeedcurve

crouch Uncrouch speed with animation curve

I have a little bug in my game and I want to be sure that no one can use this.

I let the CharacterController shrink and get bigger with a Mathf.Lerp function. that works fine but I want that he stands up slow and get faster till the endsize...

I thought I could use a animation curve to solve this problem but I dont know how to use one and I dont find something useful un the internet.

here is the code I use for the crouch uncrouch so that the character dont fall through the ground.(the code is not complete I just copied the important parts)

     function Awake()
     {
         chMotor = GetComponent (PlayerMotor);
         ch = GetComponent (CharacterController);
         tr = transform;
         height = ch.height;
     }
     
     function FixedUpdate()
     {
     var h = height;
     
     if (isCrouching == true)
     {
         h = 0.5 * height;
     }
     
     var lastHeight = ch.height;
     ch.height = Mathf.Lerp(ch.height, h, 6*Time.deltaTime);
     tr.position.y += (ch.height - lastHeight)/2;
     }
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
Best Answer

Answer by robertbu · Jan 19, 2013 at 07:43 PM

There is a script on this post that uses an animation curve to control a light:

http://answers.unity3d.com/questions/382628/flashlight-battery-script.html.

The basic idea:

  1. Create a public variable of type AnimationCurve in your script.

  2. In the inspector click on the curve and modify it to the shape you need.

  3. In your source use Evaluate() with values between 0.0 and 1.0. You get back the height of the curve at that point.

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 Harry64 · Jan 20, 2013 at 08:36 PM 0
Share

thanks I will test it out with some cubes or lights so that I maybe know then how to use this. but your answer tells me somehow to use it so I mark it as answered if I get it to work next week. thx.

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

10 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

Related Questions

Moving multiple objects at same speed 1 Answer

Uniform rotation - uniform lerp 1 Answer

Curve between Lerps 3 Answers

move a car around a curved track at variable speed 2 Answers

My moving object decelerates when almost reaching a next point in the bezier curve,My gameobject decelerates when reaching a next point 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