Advertisement
Guest User

Mucho Party Flash

a guest
Jun 25th, 2014
755
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. We have just released an iOS game (Android next week). It's called Mucho Party !
  2. Reviews are great: http://www.mucho-party.com/press/#quotes
  3. You can get it now http://appstore.com/muchoparty ;-)
  4. It's a premium game. $3,99. Mucho things in it!
  5. Sales are good so far.
  6.  
  7. The game UI, the avatars/puppets are made with nested clips in Flash CS, all the vector game assets (excepts a few bitmaps) are drawn and animated in Flash CS. All these are exported as swc and packed via FlashDevelop with the code in a single swf.
  8. The 30 minigames (without sound) + UI + avatars + code = 8 MB.
  9. That's an average of 266 KB per game.
  10. Music is external and loaded from mp3 files.
  11. The whole thing becomes an iOS app with AIR 13.
  12. RenderMode = GPU. Good old Flash display list. 60 fps on the old iPad 1.
  13.  
  14. A few highlights of "exclusive" Flash features used:
  15. - even if (almost) all the assets are stored as vectors in swc/swf they are rasterized at the device resolution at runtime.
  16. This is incredibly powerful. No multiple spritesheets/texture atlases. Just ONE graphic light vector source that can be rendered from 320x480 to 2048x1536.
  17. And when 4k resolutions arrive, everything is ready.
  18.  
  19. - the game is localized in 11 languages. Non western languages are all 100% rendered using embedded "_sans" fonts.
  20. The _sans font is stylized with some realtime/rasterized filters (no support for filter display in the GPU renderMode)
  21. See the result (100% code): https://pbs.twimg.com/media/BoPBdgsIAAAuZuB.jpg:large
  22. All just from Unicode xml files. We already have simplified Chinese but we could add traditional Chinese just by adding an xml.
  23. Note: this is also great for file size.
  24.  
  25. - for the App Store we had to do 5 images x 3 sizes x 11 languages = 165 promo images.
  26. We did a template in Flash + few lines of code to output all the files (promo texts from XML again) as PNGs.
  27. https://pbs.twimg.com/media/BpBxzORCAAEE083.jpg:large
  28. https://pbs.twimg.com/media/BpBxyxiCEAEBb5c.jpg:large
  29. https://pbs.twimg.com/media/BpBxzFGCUAICJhk.jpg:large (sorry for the bad Twitter image compression)
  30.  
  31. - for the trailer... we used... Flash! Mucho Party Official Trailer
  32.  
  33. - for the promo ministe...we used... Flash again... but to have a mobile compatibility we used the great Google Swiffy!
  34. If you haven't tried it -> https://www.google.com/doubleclick/studio/swiffy/ (if they could add WebGL acceleration that would be killer).
  35. Result: http://mucho-party.com/ ;-)
  36.  
  37. That's all folks! Sorry for the long mail/post! Thanks for reading!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement