1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
stop();
import flash.events.MouseEvent;
 
//Mouse Overlay
this.Bo.addEventListener(MouseEvent.MOUSE_OVER,Bo_over);
 
function Bo_over(e:MouseEvent):void{
    this.gotoAndStop(2);
    this.Bo.removeEventListener(MouseEvent.MOUSE_OVER,Bo_over);
    this.addEventListener(MouseEvent.MOUSE_OUT,Bo_left);
}
 
function Bo_left(e:MouseEvent):void{
    if(e.localX<0&&e.localY<0){if(e.localX>-128&&e.localY>-32){return;}}
    this.gotoAndStop(1);
    this.Bo.addEventListener(MouseEvent.MOUSE_OVER,Bo_over);
    this.removeEventListener(MouseEvent.MOUSE_OUT,Bo_left);
}
 



겨우 이정도 코드(UI가 있는 곳 위로 마우스를 올리면 나타나게, 마우스를 치우면 사라지게)를 짜는데 2시간이나 걸리다니.

그리고 깜빡임 버그로 그 중 1시간을 날려버림. (14째줄이 그 디버그를 위한 라인)


많이 녹슬었네요... 이게 다 코딩을 상상력으로 해서 그런거임.

(거의 1년을 설정놀이로 보냈으니)


나름 전성기때는 샤프로 파티클 비내리는 코드를 짤수 있었는데(그야 원리를 외웠으니까), 분발해야겠네요.


'Metnias > Aipo.TXT' 카테고리의 다른 글

엔진 변경 시도  (0) 2014.09.08
에디터 렌더링 코드 재작성  (0) 2014.08.27
그리고 일주일 후  (0) 2014.08.23
블록 에디터 제작 중 +더 많은 수학  (0) 2014.08.17
환승  (1) 2013.07.28
이제 시험기간  (0) 2013.06.12
으앙 바쁨  (0) 2013.06.02
에디터 '새 맵 제작' 부분 가완성  (0) 2013.01.01
맵 에디터용 htmlText 편집기 시험제작  (0) 2012.12.20
Posted by Metnias
,