protected virtual void Update()
 {
     if (_impl != null)
     {
         _impl.Update();
     }
 }
示例#2
0
 protected virtual void Update()
 {
     if (_tex == null || _tex.width != width || _tex.height != height)
     {
         Rebuild();
     }
     if (_impl != null)
     {
         _impl.Update();
     }
 }