home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Game Killer
/
Game_Killer.bin
/
099.MAGNIFY.DAT
< prev
next >
Wrap
Text File
|
1991-04-26
|
687b
|
39 lines
'MAGNIFY.DAT
'===========
'essentials as always
INPUT, see03.sc1
OUTPUT, test.sc1
DIR
'first let's save the original polygon so we can compare it later
'to see if we were really able to magnify it
FIND, EXACT, 2, 1
EXPORT, polygon.ele
'now we tell SEE which (number) polygon we want to magnify:
FIND, NUMBER, 1
'tell SEE what the day/dusk/night colors should be
COLOR, 12, 15, 6
'and that we want this poly expanded by 4 times (linear)
X4
'then execute
POLY
'now let's bring back the original to see the difference
'[bring it in as an object type 2 (polygon)]
TYPE, 2
IMPORT, polygon.ele
'OK; that's enough for this lesson.
SAVE,END