using UnityEngine;
using System.Collections;

public class goto1 : MonoBehaviour {
	public bool can = false;
	// Use this for initialization
	void Start () {
		if(can == true){
			goto Exit0;
		}
		Debug.Log("11111");

	Exit0:
		Debug.Log("sadfsd");
	}
	
	// Update is called once per frame
	void Update () {
	
	}
}

 

相关文章:

  • 2022-03-11
  • 2022-12-23
  • 2022-01-16
  • 2022-12-23
  • 2022-12-23
  • 2021-04-16
  • 2022-12-23
  • 2021-05-08
猜你喜欢
  • 2021-10-19
  • 2021-07-31
  • 2021-07-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-04-02
相关资源
相似解决方案