2012-10-14 72 views

回答

2

傳遞給HTML5 rotate方法的角度值應該以弧度表示,但是您需要傳遞度數。

根據你的榜樣,這應該工作:

var targetX = mouse.x - missile.x 
, targetY = mouse.y - missile.y 
, rotation = Math.atan2(targetY, targetX); 

context.rotate(rotation); 
+0

感謝您的:-) – Ben