Hi,
Some of the other things in your post are interesting, to say the least
First, the issue with the word-wrapper hanging is obviously a bug, and we'll get that fixed ASAP.
1) The Autoscaled option, as described in the docs:
AutoScaled: Boolean property that states whether to scale imagery so it appears the same physical size at any resolution. The specified native resolution values indicate the resolution that will result in a one-to-one (i.e. unscaled) mapping from source to destination. At resolutions higher than the native, the imagery will be scaled up to take up more space, and at resolutions lower than the native, the imagery will be scaled down to take up less space. Optional attribute, default is false.
The thing there is that setting it either way does not effect the size of the texture used to store the imagery - that's always whatever the source file size is (maybe scaled up to nearest power of 2, depending on API and hardware support).
With regards to the other points, the system does actually has configuration for this alignment for top, bottom, centred and stretched. There's also provisions for padding values. However, the current basic parser contains these lines(!):
Code: Select all
// TODO: Add support for parsing vert formatting specifications.
// TODO: Add support for parsing padding specifications.
So, as you can see it's on the cards, it's just not quite ready yet
The basic parser currently does not support modification of an image size, though it's a good suggestion
Be aware you can replace the parser provided with something custom made if you require different behaviour
With regards to a lack of spacing between the items (and aside from the missing 'padding' parse factility mentioned above). I did say in my earlier post:
CrazyEddie wrote:You can probably improve it a bit by adding some padding to the items and such things.
Basically to do this you just add some vertical space in the getPixelSize function, and in the draw function, add half of that amount of space to the 'y' position (so the content is centred in it's item).
CE