我想显示像这个例子这样的形状:http ://www.createjs.com/#!/EaselJS/demos/game
我想加载用图像填充的形状。这就是我所做的:
var img = "<img src='http://nielsvroman.be/twitter/root/easeljs/image.png'>";
//setup
this.graphics.clear();
this.graphics.beginStroke("#FFFFFF");
this.graphics.beginBitmapFill(img);
this.graphics.moveTo(0, size);
但我不断收到此错误:
未捕获的 TypeError:类型错误
此错误是在 Graphic.js 中创建的:
文档: http: //nielsvroman.be/twitter/root/game.html