How To

Sprites & Music

1

AsherSV256 2019-11-13 12:05

How do i use sprites that i create with the char designer and what are the commands.
Also how do i use music and what are the commands.


was8bit 2019-11-13 12:53

For your SPRITE question, read this..

https://lowresnx.inutilis.com/topic.php?id=720


was8bit 2019-11-13 12:56 (Edited)

Before you jump into the MUSIC i recommend first learn how to edit a SOUND and use that for sound effects via

PLAY 0,45,5 SOUND 0

Once you get very comfortable with that, you will be ready for MUSIC


was8bit 2019-11-13 13:02 (Edited)

To edit a sound, click the button directly left of the DISK button (the DISK button is in the upper right corner) and you then should see SND on the upper left bar

You should then also see a row of buttons numbers 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F these are your different SOUNDS you can program using the settings down below..

You will really need to test the sound in game if you are wanting to use the sound as a sound effect during the game... just realize that you only have 4 channels or VOICES that can play at the same time


was8bit 2019-11-13 13:07

You will need to be comfortable at creating your own SOUNDS as the first step .. the second step will be learning how to add your SOUNDS to a TRACK... you play a TRACK with a command TRACK 1,0...the last step is learning how to add TRACKS together to create a PATTERN which plays a song with a command like MUSIC 0

BUT, one step at a time, please ;)


was8bit 2019-11-13 13:09

The APP includes a huge help file... browse thru that abit as well :)


AsherSV256 2019-11-13 22:06

Ok thanks!


AsherSV256 2019-11-13 22:07

Also how do i change the icon on my games and stuff


was8bit 2019-11-14 04:18

IF you use an apple device.... while your game is running, wait until you see a good view you like, then quickly hit the triple dot icon in the upper left corner, and select "CAPTURE PROGRAM ICON"... Then upload an update to your game here with the new image :)


Timo 2019-11-14 08:20

coffeeandcode, this is all part of the first chapters of the manual/help. I really recommend to read it and do the examples. Of course, if things stay unclear, you can ask :)


AsherSV256 2019-11-14 11:57

Ok


AsherSV256 2019-11-14 11:57

Thanks i will do it


AsherSV256 2019-11-14 12:01

Also here Is the link if you could tell me what Is Broken https://lowresnx.inutilis.com/topic.php?id=769


G-9 2019-11-16 12:28

MUSIC
DO
WAIT VBL
LOOP
this is to play all patterns.
To make sprites, use
SPRITE.A 1,0 to Sprite 1, SPRITE.A 2,0 to Sprite 2 ...


Timo 2019-11-16 16:35

The SPRITE.A command is deprecated, you’ll find all new info in the manual for the SPRITE command.


G-9 2019-11-16 17:34

ok !


Log in to reply.