home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 February
/
Chip_2001-02_cd1.bin
/
bonus
/
demos
/
CS
/
kos
/
17
/
scene17.plg
< prev
next >
Wrap
Text File
|
2000-12-15
|
1KB
|
34 lines
<const.plg>
#
bkg=texture(in=titbkg.png);
bkgcpy=mixer(tex=bkg,op=copy);
eva=texture(in=tit1.png);
jan=texture(in=tit2.png);
ptr=texture(in=tit3.png);
osk=texture(in=tit4.png);
dan=texture(in=tit5.png);
#
clk=oscilator(fce=clock,freq=1);
oint=path(time=clk,type=linear_opened,num=25,
y=255,0,0,0,255,255,0,0,0,255,255,0,0,0,255,255,0,0,0,255,255,0,0,0,255);
#
meva=mixer(in=weva,tex=eva,op=translusparency,int=oint);
weva=window(in=bkgcpy,win=meva,x=263,y=191,w=243,h=65);
#
mjan=mixer(in=wjan,tex=jan,op=translusparency,int=oint);
wjan=window(in=bkgcpy,win=mjan,x=295,y=191,w=212,h=65);
#
mptr=mixer(in=wptr,tex=ptr,op=translusparency,int=oint);
wptr=window(in=bkgcpy,win=mptr,x=244,y=191,w=264,h=65);
#
mosk=mixer(in=wosk,tex=osk,op=translusparency,int=oint);
wosk=window(in=bkgcpy,win=mosk,x=256,y=191,w=250,h=65);
#
mdan=mixer(in=wdan,tex=dan,op=translusparency,int=oint);
wdan=window(in=bkgcpy,win=mdan,x=160,y=191,w=346,h=65);
#
tfork=fork(time=clk,type=timer,num=5,
s1=weva,s2=wjan,s3=wptr,s4=wosk,s5=wdan,t1=0,t2=5,t3=10,t4=15,t5=20);
#
output:screen(in=tfork,xres=640,yres=480,pal=my.pal);
#