Graphics 绘制的图形如何旋转?this.node.angle = xxx 无效。

代码如下:

`const graphics = this.node.getComponent(cc.Graphics);
graphics.roundRect(this.node.x, this.node.y, this.width, this.height, this.radius);
graphics.fillColor = this.color;
graphics.fill();

    this.node.angle = 45;`

找到问题了,我用的Cocos Creator是2.1.2,降级成2.1.1之后,同样的代码就可以旋转了。