/// <summary>
/// // *** 设置对象显示隐藏的快捷方法
/// </summary>
public static void SetActiveTrue(this GameObject go)
{
go.SetActive(true);
}
public static void SetActiveFalse(this GameObject go)
{
go.SetActive(false);
}
public static void SetActiveExchange(this GameObject go)
{
go.SetActive(!go.activeSelf);
}