Sprite size defaults to 32x32, even when frameset is not that size.
Copying frames/tiles in the frameset/tileset/sprite editor is confusing. Once has to click in the tile, then press alt, then drag and then let go of the mouse. Otherwise, unpredictable behavior occurs; I usually press ALT before clicking.
Could Right-clicking on a tile in the map editor pick up that tile as the current tile?
Is there an existing method for checking what frame of animation a sprite is currently in? Specifically, to play a sound whenever the sprite's foot hits the floor. Also, is there an easy way to check what tile category the sprite is standing on, for differentiating between sounds of different floor-types?
ReactToPlatform speaks of a "Sliperiness" variable that doesn't show up when I select it as an action.
When running in debug mode, if playing audio as soon as the game starts, the volume doesn't take effect immediately.
I've come upon a strange error... When I try to generate the project, it comes up with a message saying "Stack Empty", then a .NET error saying it can't find solidity.cs in the project directory. I've tried resetting the source, I've tried deleting all output files. In the end, it ends up with only 12 files and the Sprites folder before it quits out on me. (By the way, why are the sprites separate, but not the maps?)
I've got my solidity set up like this:
Name: StandardSolid
Category Shape
Solid SolidTileShape
Uphill UphillTileShape
Downhill DownhillTileShape
UphillShallow1 UphillLeftTileShape
UphillShallow2 UphillRightTileShape
DownhillShallow2 DownhillLeftTileShape
DownhillShallow1 DownhillRightTileShape
I had some problems with defining the solidity, such as errors coming up about requirements for unique keys as I was fiddling with the difference between DownhillLeftTileShape and DownhillRightTileShape. Could that have anything to do with it? It loads and saves just fine, and the solidity editor opens up just fine.
[Edit] This problem has gone away after closing and opening SGDK2. However, I would like to add one more thing:
When importing a sprite definition, can there be an option to rename it? And it would search through all the rules and replace it in there as well. For example, I imported the standard player and renamed it, but this broke the state changing code, because it was checking if the sprite was in state (int)Sprites.Player.State.Left while it should have been checking something else, of course. Or maybe an option to automatically search and replace when changing a sprite definition's name?
Also, the sprite in the SHFL game, as well as the one you can import as a template (presumably because they are the same) do not stop animating when moving to the left and are blocked by a wall (but do stop when moving right). Moving the Animate rule to after ReactToSolid fixes this.