using UnityEngine; using System.Collections; public class SwitcherMoveCompaingHandler : MonoBehaviour { public ScreenBase UICompany; public ScreenBase UICreastmasTrees; void OnClick() { UICreastmasTrees.Hide(); UICompany.Show(); } }