Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
123456789 |
- using System.Collections.Generic;
-
- namespace UnityEngine.U2D.IK
- {
- internal class AlwaysUpdateCullingStrategy : BaseCullingStrategy
- {
- public override bool AreBonesVisible(IList<int> transformIds) => true;
- }
- }
|