Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


AnimationCullingType

This enum controlls culling of Animation component.
Read time 1 minuteLast updated 6 days ago

Definition

  • Type: Enum
  • Namespace: UnityEngine
  • Assembly: UnityEngine.AnimationModule
public enum AnimationCullingType

Remarks

When culling is enabled, Unity might stop animating if it thinks that the results of the animation won't be visible to the user. This could save you some performance if you have things animating outside of the viewport, whose animation is only important when the user can actually see the thing that is being animated. When Animation component is culled it won't do anything: it won't update animation states, execute events or sample animations.

Fields

Value

Description

AlwaysAnimateAnimation culling is disabled - object is animated even when offscreen.
BasedOnRenderersAnimation is disabled when renderers are not visible.