10 lines
228 B
C#
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;
|
|
}
|
|
}
|