プレイ日記
Hunter Agent531_C
So I created a map in the editor,but how can I implement it into my graphics testing and display it on the screen? I tried Load"Map_151081" but it didn'timplement it or allow me to set it on screen.
3そうだね
プレイ済み
返信[1]
親投稿
One easy way to do it: First, load it back up in the map editor and save it using the 'SCSAVE' option at the top of the screen. This should give you four files named SC_[mapname]_L#. Then, you can load them into your program like this:
0そうだね
未プレイ
返信[2]
親投稿
XSCREEN 2,256,4 'Use 4 for four layers of BG, set the other parameters however you wish NAME$="MAPNAME" 'Set the map name in this line to match your own DIM MAP[64*64] FOR L=0 TO 3 BGSCREEN L,64,64 F$="DAT:SC_"+NAME$+"_L"+STR$(I) LOAD F$,MAP,FALSE BGLOAD L,MAP NEXT
2そうだね
未プレイ