using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class ShowModel : MonoBehaviour
{
void Start()
{
transform.gameObject.SetActive(false);//控制物体隐藏
}
public void OnShow()
{
transform.gameObject.SetActive (true);
}
}