In psuedo code, this would be:
// 'element' is the customizable element. element.location is the percentage across the layer where it's located. Eg: 50 is half way
xFromOrigin = width/(100/location.x)
yFromOrigin = height/(100/location.y));
To determine the...
I'm drawing a scene with, trying to size my font correctly. I have both a big and small version of the layer on the screen at the same time.
I want to set the font in a label on this layer (both the thumbnail and the full size version) to, for example, size 30. This works fine for the full...