0
我在網上搜索,發現這個腳本應該旋轉和圖像,但我不知道如何使用,在哪裏把角度,我希望我的精靈旋轉通過。 另外,我得到一個錯誤。 1084:語法錯誤:在leftparen之前期待標識符。 1084:語法錯誤:在leftbrace之前期待rightparen。Actionscript 3.0圍繞其中心點旋轉一個精靈
var point:Point=new Point(spr_box.x+spr_box.width/2, spr_box.y+spr_box.height/2);
rotateAroundCenter(spr_box,45);
function rotateAroundCenter (ob:*, angleDegrees) {
var m:Matrix=ob.transform.matrix;
m.tx -= point.x;
m.ty -= point.y;
m.rotate (angleDegrees*(Math.PI/180));
m.tx += point.x;
m.ty += point.y;
ob.transform.matrix=m;
}
我收到一個錯誤,當我把a = – starfox55
@ starfox55,你能告訴我錯誤是什麼嗎? – Griffin
爲了記錄,旋轉是一個函數,應該沒有= –