Inheritance: MonoBehaviour
コード例 #1
0
    // Use this for initialization
    void Start()
    {
        InvokeRepeating("Flip", 0f, Random.Range(6f, 10f));

        playerDetection = detector.GetComponent <AI_PlayerDetection>();
        Player          = GameObject.FindGameObjectWithTag("Player");
    }
コード例 #2
0
 // Use this for initialization
 void Start()
 {
     detect = gameObject.transform.parent.GetComponentInChildren<AI_PlayerDetection>();
     active = false;
 }
コード例 #3
0
ファイル: AI_Patrol.cs プロジェクト: crazymeeshu/scriptcaster
 // Use this for initialization
 void Start()
 {
     playerDetection = detector.GetComponent<AI_PlayerDetection>();
 }
コード例 #4
0
ファイル: EnemyCasting.cs プロジェクト: meeshaan/scriptcaster
 // Use this for initialization
 void Start()
 {
     detect = gameObject.transform.parent.GetComponentInChildren <AI_PlayerDetection>();
     active = false;
 }
コード例 #5
0
    private bool pursuitToPatrol      = false;  //lets us know when we switch from pursuit to patrol;


    // Use this for initialization
    void Start()
    {
        playerDetection = detector.GetComponent <AI_PlayerDetection>();
    }
コード例 #6
0
    // Use this for initialization
    void Start()
    {
        InvokeRepeating ("Flip", 0f, Random.Range(6f,10f)) ;

           playerDetection = detector.GetComponent<AI_PlayerDetection>();
           Player = GameObject.FindGameObjectWithTag ("Player");
    }