看了 ET.LSUpdater 的源码,里面核心逻辑是 LSEntitySystemSingleton.Instance.LSUpdate(entity);

而 LSEntitySystemSingleton.Instance.LSUpdate(entity) 里面又会检查 entity is not ILSUpdate,如果不是 ILSUpdate,则直接return,不处理。
那么是否可以在 ET.LSUpdater Add 方法调用时,预先判断 entity 是否为 ILSUpdate,如果不是,直接return,不处理,这样也就不用把这个 entity 加入到 newUpdateIds 和 lsEntities 里了。