팩맨 문워킹 |
|||||
---|---|---|---|---|---|
작성자 | *** | 등록일 | 21.10.27 | 조회수 | 149 |
int x = 0; int y = 0; int xspeed = 1; int yspeed = 1;
void setup(){ size(640,480); }
void draw() { background(0); fill(255,255,0); arc(x,y,150,150,0.52,5.76); x = x + xspeed; y = y + yspeed;
if(x<0 || x>640){ xspeed = -xspeed; }
if(y<0 || y>480){ yspeed = -yspeed; } } |
다음글 | 2626 최** 팩맨 코드 |
---|