Thanks!
Just in case it helps anyone here is some data I have acquired.
Overall Dimensions: 38x20
Up: 6x20
Up: 15.789473684210526 %
Left: 8x20
Left: 21.052631578947366 %
Down: 17x20
Down: 44.73684210526316 %
Right 8x20
Right: 21.052631578947366 %
Now I just need to work out a formula to figure out how many pixels any given shield part would be xD
I am not good at mathematics but I shall give it a crack
Well I failed miserably..
Hers was my attempt.
PHP Code:
function WorkOutParts(max){
temp.up = max/6.714;
temp.left = max/5.035;
temp.down = max/2.37;
temp.right = max/5.035;
echo("UP: "@int(up));
echo("LEFT: "@int(left));
echo("DOWN: "@int(down));
echo("RIGHT: "@int(right));
}
Any math guru's on here that would be able to work this puzzle out?