10 lines
233 B
C#
10 lines
233 B
C#
using System.Collections.Generic;
|
|
|
|
namespace UnityEngine.U2D.IK
|
|
{
|
|
internal class AlwaysUpdateCullingStrategy : BaseCullingStrategy
|
|
{
|
|
public override bool AreBonesVisible(IList<EntityId> transformIds) => true;
|
|
}
|
|
}
|