()
| 11 | List<string> lines; |
| 12 | int counter; |
| 13 | void Start() { |
| 14 | lines = System.IO.File.ReadLines("Assets/AnimationFile.txt").ToList(); |
| 15 | |
| 16 | } |
| 17 | void Update() { |
| 18 | if (lines.Count == 0) return; |
| 19 | var vals = lines[counter].Split(','); |
nothing calls this directly
no outgoing calls
no test coverage detected