UIWidget.MarkAsChangedLite C# (CSharp) Method

MarkAsChangedLite() public method

Only sets the local flag, does not notify the panel. In most cases you will want to use MarkAsChanged() instead.
public MarkAsChangedLite ( ) : void
return void
    public void MarkAsChangedLite()
    {
        mChanged = true;
    }

Usage Example

示例#1
0
    /// <summary>
    /// Invalidate the panel's draw calls, forcing them to be rebuilt on the next update.
    /// This call also affects all child panels.
    /// </summary>

    public void SetDirty()
    {
        for (int i = 0; i < UIDrawCall.list.size; ++i)
        {
            UIDrawCall dc = UIDrawCall.list[i];
            if (dc != null && dc.manager == this)
            {
                dc.isDirty = true;
            }
        }

        for (int i = 0; i < UIWidget.list.size; ++i)
        {
            UIWidget w = UIWidget.list[i];
            if (w.panel == this)
            {
                w.MarkAsChangedLite();
            }
        }

        for (int i = 0; i < list.size; ++i)
        {
            UIPanel p = list[i];
            if (p != null && p != this && p.parent == this)
            {
                p.SetDirty();
            }
        }
    }
All Usage Examples Of UIWidget::MarkAsChangedLite