Imerion
Member
- Joined
- Feb 24, 2005
- Messages
- 218
I tried to learn Phoenix with the aid of a DIV-Tutorial and some Fenix sources. However, I quickly encountered a program which I was unable to solve. The problem is that the car-sprite is not displayed. Any idea why? The code looks like this :
Any help would be appreciated!
program car;
global
gfx;
private
begin
gfx=LOAD_FPG("C:/dev/fenix/bkg.fpg");
put_screen(gfx,001);
frame;
while (not key(_space))
frame;
end
end
process car();
private
begin
X=160;
Y=100;
graph=002;
loop
frame;
end
end
Any help would be appreciated!