2025-05-01 01:48:08 -07:00

10 lines
228 B
C#

using System.Collections.Generic;
namespace UnityEngine.U2D.IK
{
internal class AlwaysUpdateCullingStrategy : BaseCullingStrategy
{
public override bool AreBonesVisible(IList<int> transformIds) => true;
}
}