Which is the best way to resize your project.
So I just got the project resizer and its really awesome!
I usually make an ipad game first. The reasoning is that its easier to downscale images that upscale them.
When you guys resize your project do you make two sets of images one of iphone and one for ipad?
Any other tips to get the best result from this process
I usually make an ipad game first. The reasoning is that its easier to downscale images that upscale them.
When you guys resize your project do you make two sets of images one of iphone and one for ipad?
Any other tips to get the best result from this process
![:) :)](http://forums.gamesalad.com/plugins/emojiextender/emoji/twitter/smile.png)
Comments
change attribute: self.size.width to (self.size.width*1024)/480
change attribute: self.size.hight to (self.size.hight*768)/320
change attribute: self.position.X to (self.position.X*1024)/480
change attribute: self.position.Y to (self.position.Y*768)/320
But if you want to go from iPad to iPhone, I guess you might use
change attribute: self.size.width to (self.size.width*480)/1024
change attribute: self.size.hight to (self.size.hight*320)/768
change attribute: self.position.X to (self.position.X*480)/1024
change attribute: self.position.Y to (self.position.Y*320)/768
Just group them, and put that group into each actor.
Hope this helped!
Does anybody have any tips for the process from ipad to iphone. Or should I be doing it the other way