(texture, sourceIndex, atlasData)
| 574 | if (atlasData) |
| 575 | { |
| 576 | var parse = function (texture, sourceIndex, atlasData) |
| 577 | { |
| 578 | if (Array.isArray(atlasData.textures) || Array.isArray(atlasData.frames)) |
| 579 | { |
| 580 | Parser.JSONArray(texture, sourceIndex, atlasData); |
| 581 | } |
| 582 | else |
| 583 | { |
| 584 | Parser.JSONHash(texture, sourceIndex, atlasData); |
| 585 | } |
| 586 | }; |
| 587 | if (Array.isArray(atlasData)) |
| 588 | { |
| 589 | for (var i = 0; i < atlasData.length; i++) |
no outgoing calls
no test coverage detected
searching dependent graphs…