Search Issue Tracker
By Design
Votes
0
Found in
2018.4
2019.4
2019.4.18f1
2020.2
2021.1
2021.2
Issue ID
1312817
Regression
No
error CS0103: The name 'AnimationUtility' does not exist in the current context when building the project
Reproduction steps:
1. Open project "Animation.zip"
2. Build the project
Expected result: Project build successfully
Actual result: this error pops up: Assets\anima.cs(15,9): error CS0103: The name 'AnimationUtility' does not exist in the current context
Reproducible with: 2018.4.32f1, 2019.4.21f1, 2020.2.6f1, 2021.1.0b7, 2021.2.0a6
Notes:
- No errors when running on Editor
- According to https://docs.unity3d.com/ScriptReference/Keyframe-tangentMode.html was replaced by AnimationUtility.SetKeyRightTangentMode
- Keyframe.tangentMode belonged to UnityEngine library while AnimationUtility.SetKeyRightTangentMode belongs to UnityEditor library
Comments (1)
-
CyberSherif
Aug 21, 2023 19:30
#if UNITY_EDITOR
AnimationUtility.....
#endif
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- An “Assertion failed on expression” error is thrown when building an AssetBundle and two assets have the same name
- Real delta time is different than deltaTime and uscaledDeltaTimeFixed when using multiple monitors with different refresh frequencies set in Windows options
- Persisted event listeners are reset when collapsing and expanding a component in the Inspector
- Floating Material Preview window has a burger icon button that does nothing when pressed
- TreeView drag and drop operation is not cancelled when a modal opens over it
Resolution Note:
While `Keyframe.tangentMode` was accessible at runtime, changing it didn't do anything. It's used specifically by the Animation Window to adjust the tangent automatically when changing keyframe. Hence the reason why we moved the functionality in UnityEditor.
To change the tangent at runtime, you'll need to change `Keyframe.inTangent` and `Keyframe.outTangent` manually.