Skip to content

Commit c338ecb

Browse files
committed
Fixed trimmed frames issue.
1 parent c03b2f9 commit c338ecb

2 files changed

Lines changed: 1 addition & 10 deletions

File tree

v3/src/checksum.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
var CHECKSUM = {
2-
build: '635b8da0-e234-11e6-9dac-3feadd6ebdbc'
2+
build: 'd280f080-e252-11e6-bada-f9ef445cacef'
33
};
44
module.exports = CHECKSUM;

v3/src/textures/Frame.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ Frame.prototype = {
173173
{
174174
var data = this.data;
175175
var ss = data.spriteSourceSize;
176-
var di = data.drawImage;
177176

178177
// Store actual values
179178

@@ -193,14 +192,6 @@ Frame.prototype = {
193192
this.width = destWidth;
194193
this.height = destHeight;
195194

196-
// drawImage data
197-
di.sx = destX;
198-
di.sy = destY;
199-
di.sWidth = destWidth;
200-
di.sHeight = destHeight;
201-
di.dWidth = destWidth;
202-
di.dHeight = destHeight;
203-
204195
this.updateUVs();
205196

206197
return this;

0 commit comments

Comments
 (0)