I created a game but I made the game a little too big. It would be alot of hard work to shrink all the objects in the game and resize the stage using the properties. I notice that in debug mode the whole screen can shrink when you adjust the window. Is there some code I can use to this on it's own? and will it be costly on performance ??
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
You can just create a new Flash project of the new size, load the swf of your game (using the Loader class), and scale it using scaleX and scaleY properties. That way, you can also use this new swf as a preloader. It might be costly on performances, depends on the number of DisplayObject you are using in your game. And you'll have to ensure that smoothing is activated on your bitmaps if you use some, if you want to avoid pretty horrible alisasing. |
|||
|
|
You can scale the root, which is the "uppermost" display object in your display hierarchy, and by extension everything in it by setting:
This should hardly effect performance at all, unless you have a lot of bitmap graphics, which always is faster when it's at 1 to 1 pixel ratio. |
|||||||
|