2011-08-09 122 views
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; 
} 

回答

2

修復功能,這

​​

45在你的代碼是要由旋轉的程度,只是改變該值。

+0

我收到一個錯誤,當我把a = – starfox55

+0

@ starfox55,你能告訴我錯誤是什麼嗎? – Griffin

+3

爲了記錄,旋轉是一個函數,應該沒有= –