Advertisement
Guest User

Untitled

a guest
Apr 7th, 2020
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.29 KB | None | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.AI;
  5.  
  6. public class IA : MonoBehaviour
  7. {
  8.     NavMeshAgent nma;
  9.     // Start is called before the first frame update
  10.     void Start()
  11.     {
  12.         nma = GetComponent<NavMeshAgent>();
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement