Example #1
0
        public void SetImage(string path)
        {
            filePath = path;
            texture  = GLUtils.LoadImage(Application.StartupPath + filePath);

            if (AutoResizeWidget)
            {
                MatchTextureBounds(Owner);
            }
        }
Example #2
0
 public override void Initialize()
 {
     texture = GLUtils.LoadImage(Application.StartupPath + filePath);
     MatchTextureBounds(Owner);
 }