namespace ET { [NumericWatcher(NumericType.Nphyi)] public class NumericWatcher_Nphyi : INumericWatcher { public async ETTask Run(Entity entity, float old, float value) { if (!entity) return; Unit unit = entity.As(); DelaySendSyncAttributeComponent.instance.Add(unit, NumericType.Nphyi, value); await ETTask.CompletedTask; } } }