Tickets
Issues
// XXX: drawRoundedRect triggers an error, see:- Id: d4b8df6711c38bd73578570cbca22877
- Status: Closed
- Initial commit: ad8b2960866aae2f00af4730411b9a056a784050
- Creation date: 2015-02-16 22:46:29
- Last changed: 2015-05-12 20:39:14
- Created by: Laurent Defert
- File: js/brick.js
- Last changed by: Laurent Defert
- Tag:
// XXX: drawRoundedRect triggers an error, see:
// https://github.com/GoodBoyDigital/pixi.js/issues/1209
//this.bg.drawRoundedRect(0, 0,
// Brick.getsize(), Brick.getsize(),
// Brick.getsize() * 0.2);
this.bg.drawRect(0, 0, Brick.getsize() - 1, Brick.getsize() - 1);
History
-
Changed by Laurent Defert on 2015-05-12 20:39:14 during bb7f6ed3ad6d085c471d32202ec781e9f9ee712e
-
Status:
Open- Closed
Changed by Laurent Defert on 2015-05-12 16:33:54 during 85f0368396a8aabff72410e8d602e0882dacebcd
-
Content:
updated from
// XXX: drawRoundedRect triggers an error, see: // https://github.com/GoodBoyDigital/pixi.js/issues/1209 //this.bg.drawRoundedRect(0, 0, // Brick.getsize(), Brick.getsize(), // Brick.getsize() * 0.2); this.bg.drawRect(0, 0, Brick.getsize() - 1, Brick.getsize() - 1);
Changed by Laurent Defert on 2015-04-19 08:36:41 during 427660c53ba1cbedaf55267d011634505509af4b
-
Content:
updated from
// XXX: drawRoundedRect triggers an error, see: // https://github.com/GoodBoyDigital/pixi.js/issues/1209 //this.bg.drawRoundedRect(0, 0, // BRICK_WIDTH, BRICK_HEIGHT, // BRICK_WIDTH * 0.2); this.bg.drawRect(0, 0, BRICK_WIDTH - 1, BRICK_HEIGHT - 1);
Changed by Laurent Defert on 2015-02-22 16:15:53 during e5ee6012182706b54180418ab4ecff14ff04bd3a
-
Content:
updated from
// XXX: drawRoundedRect triggers an error, see: // https://github.com/GoodBoyDigital/pixi.js/issues/1209 //this.bg.drawRoundedRect(0, 0, BRICK_WIDTH, BRICK_HEIGHT, BRICK_WIDTH * 0.2); this.bg.drawRect(0, 0, BRICK_WIDTH - 1, BRICK_HEIGHT - 1); this.bg.endFill(); this.bg.beginFill(box_color);