FTilemap.HandleResize C# (CSharp) 메소드

HandleResize() 공개 메소드

public HandleResize ( bool orientationChange ) : void
orientationChange bool
리턴 void
    public virtual void HandleResize(bool orientationChange)
    {
        if (clipToScreen) {
            // update width/height
            _clipWidth = Futile.screen.width;
            _clipHeight = Futile.screen.height;

            // reset tiles
            buildTiles();
        }
    }