Skip to content
Snippets Groups Projects
Commit a643b3a0 authored by Robin Halseth Sandvik's avatar Robin Halseth Sandvik
Browse files

Removed old print statements.

parent c15f043b
No related branches found
No related tags found
1 merge request!45Alexander
...@@ -70,9 +70,9 @@ namespace BigSock.Service { ...@@ -70,9 +70,9 @@ namespace BigSock.Service {
_abilities = _abilityList _abilities = _abilityList
.ToDictionary(t => t.Id); .ToDictionary(t => t.Id);
foreach(var a in _abilityList) { //foreach(var a in _abilityList) {
Debug.Log($"[AbilityService._loadItems()] {a.Id}"); // Debug.Log($"[AbilityService._loadItems()] {a.Id}");
} //}
} }
/* /*
......
...@@ -80,7 +80,7 @@ namespace BigSock.Service { ...@@ -80,7 +80,7 @@ namespace BigSock.Service {
var name = _sanitize(path.Replace(".prefab", "").Replace("Assets/Prefabs/", "")); var name = _sanitize(path.Replace(".prefab", "").Replace("Assets/Prefabs/", ""));
GameObject go = AssetDatabase.LoadAssetAtPath<GameObject>( path ); GameObject go = AssetDatabase.LoadAssetAtPath<GameObject>( path );
Debug.Log($"[PrefabService._loadItems()] {name}"); //Debug.Log($"[PrefabService._loadItems()] {name}");
dict[name] = go; dict[name] = go;
} }
......
...@@ -55,7 +55,7 @@ namespace BigSock.Service { ...@@ -55,7 +55,7 @@ namespace BigSock.Service {
var name = _sanitize(path.Replace(".png", "").Replace(".jpg", "").Replace("Assets/Sprites/", "")); var name = _sanitize(path.Replace(".png", "").Replace(".jpg", "").Replace("Assets/Sprites/", ""));
Sprite go = AssetDatabase.LoadAssetAtPath<Sprite>( path ); Sprite go = AssetDatabase.LoadAssetAtPath<Sprite>( path );
Debug.Log($"[SpriteService._loadItems()] {name}"); //Debug.Log($"[SpriteService._loadItems()] {name}");
dict[name] = go; dict[name] = go;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment