Graphics组件提示调用失败

Simulator: E/jswrapper (53): [ERROR] Failed to invoke js_creator_graphics_GraphicsNode_moveTo, location: …\auto\jsb_creator_graphics_auto.cpp:53
Simulator: E/jswrapper (74): [ERROR] Failed to invoke js_creator_graphics_GraphicsNode_lineTo, location: …\auto\jsb_creator_graphics_auto.cpp:74

Graphics组件的lineTo和moveTo方法在模拟器上提示调用失败,但是在浏览器没有问题,求教大神

版本v2.0.2,Graphics组件的lineTo和moveTo方法在模拟器上是可以正常使用的。你版本多少,把相关信息帖一下。

版本是1.9.2,在Windows上模拟器调用失败,但是用MAC却没有问题
//画线开始点
this.Graph.moveTo(this.FirstTarget.position);
//画线折点1
if (this.Point_One_pos !== null) {
this.Graph.lineTo(this.Point_One_pos);
}
//画线折点2
if (this.Point_Two_pos !== null) {
this.Graph.lineTo(this.Point_Two_pos);
}
//画线结束点
this.Graph.lineTo(this.Point_End_pos);
//画线
this.Graph.stroke();
括号里是获取的坐标值