FSO.LotView.World.InvalidateZoom C# (CSharp) Метод

InvalidateZoom() публичный Метод

public InvalidateZoom ( ) : void
Результат void
        public void InvalidateZoom()
        {
            if (Blueprint == null) { return; }

            foreach (var item in Blueprint.Objects){
                item.OnZoomChanged(State);
            }
            Blueprint.Damage.Add(new BlueprintDamage(BlueprintDamageType.ZOOM));
        }

Usage Example

Пример #1
0
 protected void InvalidateZoom()
 {
     WorldSpace.Invalidate();
     InvalidateCamera();
     World.InvalidateZoom();
 }