exUIPanel.OnSizeChanged C# (CSharp) Method

OnSizeChanged() protected method

protected OnSizeChanged ( float _newWidth, float _newHeight ) : void
_newWidth float
_newHeight float
return void
    protected override void OnSizeChanged( float _newWidth, float _newHeight )
    {
        base.OnSizeChanged( _newWidth, _newHeight );

        if ( background ) {
            exUIMng.SetSize ( background, _newWidth, _newHeight );
        }
    }