Skip to content

Commit

Permalink
feat(UGUI): add 1.8 version support
Browse files Browse the repository at this point in the history
  • Loading branch information
Iam1337 committed Dec 13, 2021
1 parent 1314fac commit f1dda8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/extDebug.UGUI/Scripts/Menu/MenuRender.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ void IDMRender.Repaint(DMBranch branch, IReadOnlyList<DMItem> items)
_label_Text.text = _builder.ToString();
}

void IDMRender_Update.Update()
void IDMRender_Update.Update(bool isVisible)
{
_menuObject.SetActive(DM.IsVisible);
_menuObject.SetActive(isVisible);
}

#endregion
Expand Down

0 comments on commit f1dda8e

Please sign in to comment.