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
- Out-of-bounds memory access with multiple CanvasRenderers under a Canvas when using Mesh API
- Inspector tries to access file after it was deleted when the file was locked in Inspector window
- Changing Transform values in Search window Inspector loses focus while dragging and stopping mouse without releasing dragging action
- Saving changes on the dirty VFX Graph during the Play mode throws "The referenced script (Unknown) on this Behaviour is missing!" warnings
- VFX Graph Debug Info overlaps the "Initialize" block debug info by default
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.