2626 최** 팩맨 코드 |
|||||
---|---|---|---|---|---|
작성자 | *** | 등록일 | 21.10.27 | 조회수 | 85 |
int x, speed;
void setup() { size(640,480); }
void draw() { background(0); fill(255,255,0); arc(x,240,150,150,0.52,5.76); x = x + speed;
if(x == 640) speed=-1; else if(x == 0) speed=1; } |
이전글 | 팩맨 문워킹 |
---|---|
다음글 | 프로세싱 무지 예제 코드 |