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 /
avatar image
1
Question by OllyNicholson · Jul 01, 2011 at 11:10 AM · animationanglekeyframetangent

How can I set all of my animation keyframes tangents to become right angles?

When importing animation data from my FBX I lose right angled tangent properties for my keyframes, how can I reset them in an automated process?

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

2 Replies

· Add your reply
  • Sort: 
avatar image
3

Answer by OllyNicholson · Jul 01, 2011 at 11:15 AM

You can write an editor script to set all inTangent and outTangent properties of each keyframe to Mathf.Infinity.

To get access to the keyframes you can use AnimationUtility.GetAllCurves to read the values

Here is an example that creates an animation curve with all keyframes' inTangent and outTangent properties set to Mathf.Infinity:

 var anim : AnimationCurve = new AnimationCurve();
 function Start() {
 var ks : Keyframe[] = new Keyframe[3];
     ks[0] = Keyframe(0, 0);
     ks[0].inTangent = Mathf.Infinity;
     ks[0].outTangent = Mathf.Infinity;
     ks[0].value = 0;
     ks[1] = Keyframe(4, 0);
     ks[1].inTangent = Mathf.Infinity;
     ks[1].value = 1;
     ks[2] = Keyframe(8, 0);
     ks[2].inTangent = Mathf.Infinity;
     ks[2].value = 0;
     anim = AnimationCurve(ks);
 }

You could write this as an AssetPostprocessor to apply to the model on import

Comment
Add comment · 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
0

Answer by SuppleTeets · Sep 27, 2014 at 09:12 PM

After some trial and error, I finally got this working and it looks great, thanks so much OllyNicholson.

Only issue if you have the animation window open it hangs while there are tons of errors spitting out.

Anyone have any ideas how this can be fixed?

 Quaternion To Matrix conversion failed because input Quaternion is invalid {-1.#IND00, -1.#IND00, -1.#IND00, -1.#IND00} l=-1.#IND00
 UnityEditor.AnimationUtility:GetCurveBindings(AnimationClip)
 UnityEditorInternal.AnimationWindowState:get_allCurves() (at C:/BuildAgent/work/d63dfc6385190b60/Editor/Mono/Animation/AnimationWindow/AnimationWindowState.cs:237)
 UnityEditorInternal.AnimationWindowHierarchyDataSource:FetchData() (at C:/BuildAgent/work/d63dfc6385190b60/Editor/Mono/Animation/AnimationWindow/AnimationWindowHierarchyDataSource.cs:42)
 UnityEditor.TreeView:ReloadData()
 UnityEditorInternal.AnimationWindowHierarchyDataSource:UpdateData() (at C:/BuildAgent/work/d63dfc6385190b60/Editor/Mono/Animation/AnimationWindow/AnimationWindowHierarchyDataSource.cs:126)
 UnityEditorInternal.AnimationWindowState:Refresh() (at C:/BuildAgent/work/d63dfc6385190b60/Editor/Mono/Animation/AnimationWindow/AnimationWindowState.cs:525)
 UnityEditorInternal.AnimationWindowState:OnGUI() (at C:/BuildAgent/work/d63dfc6385190b60/Editor/Mono/Animation/AnimationWindow/AnimationWindowState.cs:70)
 UnityEditor.DockArea:OnGUI()


Comment
Add comment · 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

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Extending tangents in Animation window 0 Answers

Visbility keyframes in animation 1 Answer

How can I give variation to animation curve in Unity? (Raw mocap data) 0 Answers

What is the math behind AnimationCurve.Evaluate? 5 Answers

Keyframe Animation 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