Version: 2019.2
Retargeting de Animaciones Humanoides
Animation Reference

Performance and optimization

This page contains some tips to help you obtain the best performance in Unity, covering the animation system and run-time optimizations.

Note: For tips on modeling your character in a 3d application for best performance in Unity, see Modeling characters for optimal performance.

Animation system

Controllers

El Animator no gasta tiempo procesando cuando un Controller no está configurado para hacerlo.

Simple animation

Playing a single Animation Clip with no blending can make Unity slower than the legacy animation system. The old system is very direct, sampling the curve and directly writing into the transform. Unity’s current animation system has temporary buffers it uses for blending, and there is additional copying of the sampled curve and other data. The current system layout is optimized for animation blending and more complex setups.

Scale curves

Las animation scale curves (curvas de animación escaladas) son más caras que animar curvas de translation (translación) y rotation (rotación). Para mejorar el rendimiento, evite las scale animations (animaciones de escala).

Note: This does not apply to constant curves (curves that have the same value for the length of the animation clip). Constant curves are optimized, and are less expensive that normal curves. Constant curves that have the same values as the default scene values do not write to the scene every frame.

Layers

Most of the time Unity is evaluating animations, and keeps the overhead for animation layers and Animation State Machines to the minimum. The cost of adding another layer to the animator, synchronized or not, depends on what animations and blend trees are played by the layer. When the weight of the layer is zero, Unity skips the layer update.

Humanoid vs. Generic animation types

These are tips to help you decide between these types:

  • When importing Humanoid animation use an Avatar Mask (class-AvatarMask) to remove IK Goals or finger animation if you don’t need them.
  • When you use Generic, using root motion is more expensive than not using it. If your animations don’t use root motion, make sure that you have not specified a root bone.

Scene-level optimization

Hay muchas optimizaciones que se pueden hacer, algunas recomendaciones útiles incluyen:

Utilice hashes en vez de strings para consultar el Animator. * Implement a small AI Layer to control the Animator. You can make it provide simple callbacks for OnStateChange, OnTransitionBegin, and other events. * Use State Tags to easily match your AI state machine to the Unity state machine. * Use additional curves to simulate events. * Use additional curves to mark up your animations; for example, in conjunction with target matching.

Runtime Optimizations

Visibility and updates

Always optimize animations by setting the animators’s Culling Mode to Based on Renderers, and disable the skinned mesh renderer’s Update When Offscreen property. This saves Unity from updating animations when the character is not visible.

Retargeting de Animaciones Humanoides
Animation Reference
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961