hide transpoint when close map

This commit is contained in:
Le Duc Anh
2026-04-30 17:48:03 +07:00
parent 7853bd2dd6
commit 51d9c5ccd8
@@ -68,6 +68,17 @@ namespace BrewMonster.UI
}
}
public override void CloseDialogue()
{
base.CloseDialogue();
// hide all the trans points
foreach(var transPoint in _transPoints)
{
transPoint.Value.gameObject.SetActive(false);
}
}
public override bool Render()
{
UpdateHostPlayerPositionImage();