TuxedoBerries.ScenePanel.Drawers.ScreenshotDrawer.GetTexture C# (CSharp) Method

GetTexture() private method

private GetTexture ( string path, bool refresh ) : Texture
path string
refresh bool
return UnityEngine.Texture
        private Texture GetTexture(string path, bool refresh)
        {
            if (_textureDatabase == null)
                return null;
            if (string.IsNullOrEmpty (path))
                return null;
            return _textureDatabase.GetTexture (path, refresh);
        }