プレイ日記
Aaron pikamony
so im a noob. and would like to learn how to place and move sprites.
2そうだね
プレイ済み
返信[1]
親投稿
V360 TheV360
SPSET ID,SPRITE ID: The number that you will use to do stuff to this sprite. (move it, animate it, etc.) SPRITE: The SPDEF number you can find in the SMILE TOOL (for example, 0 is strawberry) SPOFS ID,X,Y ID: ... X, Y: Coordinates on the screen (0,0 is top left) For example, if I wanted a strawberry to appear at a random place, this is what I would do: SPSET 0,0 SPOFS 0,RND(400),RND(240)
0そうだね
プレイ済み
返信[2]
親投稿
V360 TheV360
Please note that once you SPSET a sprite, you don't have to SPSET a sprite again. SPSET 0,0 WHILE 1 SPOFS 0,RND(400),RND(240) VSYNC 5 WEND
0そうだね
プレイ済み
返信[3]
親投稿
Aaron pikamony
ummm..... ok
0そうだね
プレイ済み