-
// 무비 클립이 붙여질때 쓰여질 변수;
-
attachSu = 0;
-
// 선의 출발점 X의 좌표를 넣어줄 변수;
-
xChulBar = 225;
-
// 선의 출발점 Y의 자표를 넣어줄 변수;
-
yChulBar = 200;
-
// 마우스가 눌러졌는지를 확인하는 변수;
-
sangTea = false;
-
// 선을 그려주는 함수;
-
function senGRiGi(xNow,yNow) {
-
var xChaY = xNow - _root.xChulBar;
-
var yChaY = yNow - _root.yChulBar;
-
_root.attachMovie("jul","sen"+attachSu,attachSu);
-
_root["sen"+attachSu]._x = _root.xChulBar;
-
_root["sen"+attachSu]._y = _root.yChulBar;
-
_root["sen"+attachSu]._xscale = Math.sqrt((xChaY*xChaY)+(yChaY*yChaY));
-
_root["sen"+attachSu]._rotation = Math.atan2(yChaY,xChaY)/(Math.PI/180);
-
_root.attachSu++;
-
_root.xChulBar = xNow;
-
_root.yChulBar = yNow;
-
}
|