An interesting idea...
Moderator: Moderators
Re: An interesting idea...
If you don't like C++, you could learn Python and make your metasprite editor in PyGTK.
Re: An interesting idea...
There's a metasprite editor for NES in NES Screen Tool. It's not the greatest metasprite editor around, but it does the job.
Download STREEMERZ for NES from fauxgame.com! — Some other stuff I've done: fo.aspekt.fi
- never-obsolete
- Posts: 403
- Joined: Wed Sep 07, 2005 9:55 am
- Location: Phoenix, AZ
- Contact:
Re: An interesting idea...
I added a simple metasprite editor to MapEd Pro. If anyone is interested, I could post an update.
Animation formats:
Frame formats:
Coordinates can be signed or unsigned. It doesn't cover all cases, but most of the commercial games I've seen used something similar.
I've been testing other things that were added to the program, so I haven't posted a new version in a while.
Animation formats:
Code: Select all
1: [FRAME, TIME][...][CTRL_CODE]
2: [COUNT][FRAME, TIME][...]
3: [START][LENGTH][TIME]
Code: Select all
1: [COUNT][Y, T, A, X][...]
2: [COUNT][A][Y, T, X][...]
I've been testing other things that were added to the program, so I haven't posted a new version in a while.
-
psycopathicteen
- Posts: 3001
- Joined: Wed May 19, 2010 6:12 pm
Re: An interesting idea...
I just came up with another solution. For my future SNES games, I'll implement variable slot height into my self-defragmenting variable sized slot dynamic animation engine. So far, only variable width have been implemented. This means I can have a 32x40 sprite stored in ROM without compressing it to fit within 64x16, without wasting too much extra room.