Skip to content

Commit bb3b5c3

Browse files
committed
Removed console logs.
1 parent d2f6fdc commit bb3b5c3

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

v3/src/textures/TextureManager.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,6 @@ var TextureManager = new Class({
176176

177177
addSpriteSheetFromAtlas: function (key, config)
178178
{
179-
console.log('addSpriteSheetFromAtlas', key);
180-
181179
var atlasKey = GetValue(config, 'atlas', null);
182180
var atlasFrame = GetValue(config, 'frame', null);
183181

@@ -193,17 +191,13 @@ var TextureManager = new Class({
193191
{
194192
var texture = this.create(key, sheet.source.image);
195193

196-
// If trimmed we need to help the parser adjust
197-
198-
console.log(sheet);
199-
200194
if (sheet.trimmed)
201195
{
196+
// If trimmed we need to help the parser adjust
202197
Parser.SpriteSheetFromAtlas(texture, sheet, config);
203198
}
204199
else
205200
{
206-
// Parser.SpriteSheetFromAtlas(texture, sheet, config);
207201
Parser.SpriteSheet(texture, 0, sheet.cutX, sheet.cutY, sheet.cutWidth, sheet.cutHeight, config);
208202
}
209203

0 commit comments

Comments
 (0)