Ejemplo n.º 1
0
 void OnDrawGizmos()
 {
     UnityEditor.Handles.color = Color.black;
     UnityEditor.Handles.Label(transform.position, fishState.ToString());
 }
Ejemplo n.º 2
0
    public static string GetFolderSpritesPath(string a_FishId, FishState a_FishState)
    {
        string folderFishPath = AssetPathConstant.FOLDER_FISH_PATH + "/" + a_FishId + "/" + a_FishState.ToString().ToLower();

        return(folderFishPath);
    }