주닷 오랜만
여긴 한결같아
그나저나 플래시가 왜 갑자기 애니메이트로 변신한거지
빌어묵을 어도비
= 스크립트 =
stage.addeventlistener(mouseevent.mouse_move,movin);
stage.addeventlistener(event.enter_frame,entf);
var jbdeg = 0;
var mousedeg = 0;
function entf(a:event){
mousedgtxt.text = mousedeg;
jbdgtxt.text = jbdeg;
hos.rotation = mousedeg * 2;
jball.rotation = mousedeg + 90;
}
function movin(b:event){
mousedeg = math.round(math.atan2(stage.mousey-zp.y,stage.mousex-zp.x) *100 / math.pi * 180) / 100 ;
jball.x = 145 / 2 * math.cos(mousedeg*math.pi/180) +zp.x;
jball.y = 145 / 2 * math.sin(mousedeg*math.pi/180) +zp.y;
jbdeg = math.round(math.atan2(jball.y-zp.y,jball.x-zp.x) *100 / math.pi * 180) / 100 ;
}
|