Advertisement
nlbi21

TipoTile - Unity - Grid Pathfiding (Español)

Dec 9th, 2016
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4.  
  5. [System.Serializable]
  6. // Clase para asignar el tipo de tile.
  7. public class TipoTile {
  8.        
  9.         // Nombre del tipo de tile (Ejemplo: Hierva, montaña, agua, entro otros).
  10.         public string nombre;
  11.  
  12.         // GameObject que representara el tile.
  13.         public GameObject prefabVisualTile;
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement