SlideShare a Scribd company logo
1 of 21
Download to read offline
TM & © 2012 Rivello Multimedia Consulting
Topic
        Speaker
          •Samuel Asher Rivello is the principal of
          Rivello Multmedia Consultng (RMC). Rivello Multmedia Consultng
          (RMC) provides sofware consultng services for Adobe’s Flash and
          Flex as well as HTML5 standards.
          •We consult on sofware architecture for apps and for games,
          advergames, and monetzed virtual worlds targetng browsers,
          desktop, and cross-device mobile.
          •We champion best practces, setup efcient team workfows, and
          provide corporate technical training.

        Agenda
          •Learn the benefts and syntax of Starling for gaming


        Audience
          •Intermediate    to Advanced ActionScript 3.0 Developers


        Take-Away
          •All   source code and documentation will be available to attendees




                                    info@RivelloMultimediaConsulting.com
                                   TM & © 2012 Rivello Multimedia Consulting
Topic

Notice
   1.    Stage3D is new
   2.    Starling is new
   3.    I am new


         So... features and syntax may change and my code may
         not show the 'best' solutions.




                                          info@RivelloMultimediaConsulting.com
                                         TM & © 2012 Rivello Multimedia Consulting
Agenda

Three Sections
   1.   What is Stage3D?
        •   Benefits & Challenges
        •   Frameworks
   2.   What is Starling?
        •   Overview
        •   Implementation (Code Samples!)
   3.   Conclusion
        •   Q&A
        •   References


                                         info@RivelloMultimediaConsulting.com
                                        TM & © 2012 Rivello Multimedia Consulting
SECTION 1
What is Stage3D?




                   info@RivelloMultimediaConsulting.com
                   TM & © 2012 Rivello Multimedia Consulting
Stage3D

What is Stage3D
                                                            Figure 1


  ●
   Stage 3D, previously codenamed "Molehill," is a method of 2D
  and 3D rendering with a set of low-level GPU-accelerated APIs
  ●
      Available for Flash Player 11.x and AIR 3.2 (iOS/Android)
  ●
      Runs on a unique layer under the display list (See Figure 1.)


           Today, you can publish the fastest Flash games ever
             on the widest array of devices including iPad 3!



                                                    info@RivelloMultimediaConsulting.com
                                                    TM & © 2012 Rivello Multimedia Consulting
Stage3D

Benefits
   ●
     With Stage3D – Render hundreds of thousands of z-bufered
   triangles to be rendered at HD resoluton in full screen at 60 Hz
   (instead of just 'thousands' at 30 Hz without Stage3D).
   ●
    GPU not CPU now handles rendering so rendering is more
   performant and you have more CPU power for your coding.




                                             info@RivelloMultimediaConsulting.com
                                            TM & © 2012 Rivello Multimedia Consulting
Stage3D

Challenges
  ●
    The language is very low-level
  (difcult* to read and write)
  ●
   All 'sprites' must be patched
  together from triangles (triangles
  are the 'pixel' of 3D graphics)
  ●
   Sprites handling mouse
  gestures and using vector
  graphics is not supported
                                 * Especially compared to the (non-Stage3D) traditonal Display List




                                                      info@RivelloMultimediaConsulting.com
                                                      TM & © 2012 Rivello Multimedia Consulting
Stage3D

Sounds powerful, but hard to use...


   ●
       True.
   ●
       Luckily, we have some help.
   ●
       Many frameworks exist to make our lives easier.




                                              info@RivelloMultimediaConsulting.com
                                              TM & © 2012 Rivello Multimedia Consulting
Stage3D

Frameworks
      AS3 frameworks with Stage3D for 2D gaming;
  ●
        Starling
  ●
        ND2D
  ●
        Citrus Engine (Recently Upgraded To Stage3D)
      AS3 frameworks for Stage3D for 3D gaming;
  ●
        Flare3D
  ●
        Alternatva3D (Recently Open-Source)


                                                       info@RivelloMultimediaConsulting.com
                                                       TM & © 2012 Rivello Multimedia Consulting
SECTION 2
What is Starling?




                    info@RivelloMultimediaConsulting.com
                    TM & © 2012 Rivello Multimedia Consulting
Starling

What is Starling? – A 2D AS3 Framework for Stage3D
   ●
       Free & Open Source – Easy to use so you can focus on your games!
   ●
    Platorm independent – Browser, Desktop, iOS, Android, Blackberry
   Tablet.
   ●
     Amazing Performance & Familiar API -Starling is a pure ActonScript 3
   library that mimics the conventonal Flash display list architecture.
   ●
    Embraced* by Adobe – Adobe supports the development of Starling and
   plans to integrate it tghtly into its tools. You get the best of both worlds:
   corporate commitment and a vivid community.
        * Very Interestng – This means tghter integraton with Flash Player / AIR improvements and bigger marketng muscle

                               for the framework. The 2D Framework with the biggest community has a distnct advantage.




                                                                                  info@RivelloMultimediaConsulting.com
                                                                                 TM & © 2012 Rivello Multimedia Consulting
Starling

Core Classes




               info@RivelloMultimediaConsulting.com
               TM & © 2012 Rivello Multimedia Consulting
Starling

Core Concepts
                                          Vector (FLA)                    SpriteSheet (JPG)


  ●
   Setup - The Startup.as document-class extends Sprite and composes an
  instance of Game.as.
  ●
      Starling.juggler.add (displayObject) - Required to have 'enterFrame'.
  Assets
  ●
    TextureAtlas – An instance is required for each 'asset' you want to render.
  Its defned by a SpriteSheet and XML info about it. You cannot directly use
  vector source assets such as Flash tmeline animaton.
  ●
   I don't use TextureAtlas or SpriteSheets – I use a Starling extension
  DynamicTextureAtlasGenerator that allows for full vector source assets.


                                                         info@RivelloMultimediaConsulting.com
                                                         TM & © 2012 Rivello Multimedia Consulting
DEMO
Let's See Starling In Action!

1. The Official Demo - http://gamua.com/starling/demo/
2. My Hello World
3. My Flyer Game (Simple Version)
4. My Flyer Game (OOP Version)




                                                         info@RivelloMultimediaConsulting.com
                                                         TM & © 2012 Rivello Multimedia Consulting
Starling

Extensions
                                   ParticleSystem Designer          Particle System In Game (FlyerGame)


  ●
      Allow for additonal functonality within Starling projects. My favorites;
  ●
      PartcleSystem – Generate efects like smoke & fre
  ●
      DynamicTextureAtlas Generator – Use vector source assets




                                                             info@RivelloMultimediaConsulting.com
                                                             TM & © 2012 Rivello Multimedia Consulting
Q&A!

Three Sections
   1.   What is Stage3D?
        •   Benefits & Challenges
        •   Frameworks
   2.   What is Starling?
        •   Overview
        •   Implementation (Code Samples!)
   3.   Conclusion
        •   Q&A
        •   References


                                         info@RivelloMultimediaConsulting.com
                                        TM & © 2012 Rivello Multimedia Consulting
SECTION 3
Conclusion




             info@RivelloMultimediaConsulting.com
             TM & © 2012 Rivello Multimedia Consulting
References

Starling Framework

  Today's Presentation (Includes All Other
  Links)

  http://bit.ly/IntroStarling




                                             info@RivelloMultimediaConsulting.com
                                             TM & © 2012 Rivello Multimedia Consulting
Thanks!

Presentation Questions
   Send Questions & Comments

   info@RivelloMultimediaConsulting.com


Consulting Inquiries (RivelloMultimediaConsulting.com)


   Software Architecture, Consulting, Development, & Training.

   info@RivelloMultimediaConsulting.com




                                          info@RivelloMultimediaConsulting.com
                                          TM & © 2012 Rivello Multimedia Consulting
Thanks!

Presentation Questions
   Send Questions & Comments

   info@RivelloMultimediaConsulting.com


Consulting Inquiries (RivelloMultimediaConsulting.com)


   Software Architecture, Consulting, Development, & Training.

   info@RivelloMultimediaConsulting.com




                                          info@RivelloMultimediaConsulting.com
                                          TM & © 2012 Rivello Multimedia Consulting

More Related Content

Similar to Intro To Starling Framework for ActionScript 3.0

Big data meetup_10_9_2013
Big data meetup_10_9_2013Big data meetup_10_9_2013
Big data meetup_10_9_2013Tanya Cashorali
 
"You don't need a bigger boat": serverless MLOps for reasonable companies
"You don't need a bigger boat": serverless MLOps for reasonable companies"You don't need a bigger boat": serverless MLOps for reasonable companies
"You don't need a bigger boat": serverless MLOps for reasonable companiesData Science Milan
 
2015 Intro to 3d Module \ Cert4 IDM
2015 Intro to 3d Module \ Cert4 IDM2015 Intro to 3d Module \ Cert4 IDM
2015 Intro to 3d Module \ Cert4 IDMChrisTasTafe
 
Aras and T-Systems: Supplier Management
Aras and T-Systems: Supplier ManagementAras and T-Systems: Supplier Management
Aras and T-Systems: Supplier ManagementAras
 
Google cloud Study Jam 2023.pptx
Google cloud Study Jam 2023.pptxGoogle cloud Study Jam 2023.pptx
Google cloud Study Jam 2023.pptxGDSCNiT
 
Android design lecture #1
Android design   lecture #1Android design   lecture #1
Android design lecture #1Vitali Pekelis
 
Design Processes and Systems in Craft
Design Processes and Systems in CraftDesign Processes and Systems in Craft
Design Processes and Systems in CraftCourtney Bradford
 
Lessons Learned: Designer/Developer Productivity in Windows Presentation Foun...
Lessons Learned: Designer/Developer Productivity in Windows Presentation Foun...Lessons Learned: Designer/Developer Productivity in Windows Presentation Foun...
Lessons Learned: Designer/Developer Productivity in Windows Presentation Foun...goodfriday
 
Syed Arif Ali_8+yrs_SDE_updated
Syed Arif Ali_8+yrs_SDE_updatedSyed Arif Ali_8+yrs_SDE_updated
Syed Arif Ali_8+yrs_SDE_updatedSyed Ali
 
.NET Architecture for Enterprises
.NET Architecture for Enterprises.NET Architecture for Enterprises
.NET Architecture for EnterprisesWade Wegner
 
GDSC NIET ORIENTATION ).pdf
GDSC NIET ORIENTATION ).pdfGDSC NIET ORIENTATION ).pdf
GDSC NIET ORIENTATION ).pdfYashiGupta410690
 
HTML5ではないサイトを HTML5へ - Change HTML5 from Not HTML5.
HTML5ではないサイトを HTML5へ - Change HTML5 from Not HTML5.HTML5ではないサイトを HTML5へ - Change HTML5 from Not HTML5.
HTML5ではないサイトを HTML5へ - Change HTML5 from Not HTML5.Sadaaki HIRAI
 
O leary2012 comp_ppt_ch07
O leary2012 comp_ppt_ch07O leary2012 comp_ppt_ch07
O leary2012 comp_ppt_ch07Dalia Saeed
 
Mixed Reality Studio Overview
Mixed Reality Studio Overview Mixed Reality Studio Overview
Mixed Reality Studio Overview Jonathan Reeves
 
Pareto will tell you to stop using your ORM - Mateo Collina
Pareto will tell you to stop using your ORM - Mateo CollinaPareto will tell you to stop using your ORM - Mateo Collina
Pareto will tell you to stop using your ORM - Mateo CollinaWey Wey Web
 
The Dynamic Information Model
The Dynamic Information ModelThe Dynamic Information Model
The Dynamic Information Modelgeorgebina
 
The Future of Software is Open Source
The Future of Software is Open SourceThe Future of Software is Open Source
The Future of Software is Open SourceAngelo Corsaro
 
Micro Everything - Our Road to Scale
Micro Everything - Our Road to ScaleMicro Everything - Our Road to Scale
Micro Everything - Our Road to ScaleAhmad Assaf
 
Cyclone DDS Unleashed: The Origins
Cyclone DDS Unleashed: The OriginsCyclone DDS Unleashed: The Origins
Cyclone DDS Unleashed: The OriginsZettaScaleTechnology
 

Similar to Intro To Starling Framework for ActionScript 3.0 (20)

Big data meetup_10_9_2013
Big data meetup_10_9_2013Big data meetup_10_9_2013
Big data meetup_10_9_2013
 
"You don't need a bigger boat": serverless MLOps for reasonable companies
"You don't need a bigger boat": serverless MLOps for reasonable companies"You don't need a bigger boat": serverless MLOps for reasonable companies
"You don't need a bigger boat": serverless MLOps for reasonable companies
 
2015 Intro to 3d Module \ Cert4 IDM
2015 Intro to 3d Module \ Cert4 IDM2015 Intro to 3d Module \ Cert4 IDM
2015 Intro to 3d Module \ Cert4 IDM
 
Aras and T-Systems: Supplier Management
Aras and T-Systems: Supplier ManagementAras and T-Systems: Supplier Management
Aras and T-Systems: Supplier Management
 
Google cloud Study Jam 2023.pptx
Google cloud Study Jam 2023.pptxGoogle cloud Study Jam 2023.pptx
Google cloud Study Jam 2023.pptx
 
Android design lecture #1
Android design   lecture #1Android design   lecture #1
Android design lecture #1
 
Design Processes and Systems in Craft
Design Processes and Systems in CraftDesign Processes and Systems in Craft
Design Processes and Systems in Craft
 
Lessons Learned: Designer/Developer Productivity in Windows Presentation Foun...
Lessons Learned: Designer/Developer Productivity in Windows Presentation Foun...Lessons Learned: Designer/Developer Productivity in Windows Presentation Foun...
Lessons Learned: Designer/Developer Productivity in Windows Presentation Foun...
 
Syed Arif Ali_8+yrs_SDE_updated
Syed Arif Ali_8+yrs_SDE_updatedSyed Arif Ali_8+yrs_SDE_updated
Syed Arif Ali_8+yrs_SDE_updated
 
.NET Architecture for Enterprises
.NET Architecture for Enterprises.NET Architecture for Enterprises
.NET Architecture for Enterprises
 
GDSC NIET ORIENTATION ).pdf
GDSC NIET ORIENTATION ).pdfGDSC NIET ORIENTATION ).pdf
GDSC NIET ORIENTATION ).pdf
 
HTML5ではないサイトを HTML5へ - Change HTML5 from Not HTML5.
HTML5ではないサイトを HTML5へ - Change HTML5 from Not HTML5.HTML5ではないサイトを HTML5へ - Change HTML5 from Not HTML5.
HTML5ではないサイトを HTML5へ - Change HTML5 from Not HTML5.
 
O leary2012 comp_ppt_ch07
O leary2012 comp_ppt_ch07O leary2012 comp_ppt_ch07
O leary2012 comp_ppt_ch07
 
Mixed Reality Studio Overview
Mixed Reality Studio Overview Mixed Reality Studio Overview
Mixed Reality Studio Overview
 
Pareto will tell you to stop using your ORM - Mateo Collina
Pareto will tell you to stop using your ORM - Mateo CollinaPareto will tell you to stop using your ORM - Mateo Collina
Pareto will tell you to stop using your ORM - Mateo Collina
 
Typescript++1
Typescript++1Typescript++1
Typescript++1
 
The Dynamic Information Model
The Dynamic Information ModelThe Dynamic Information Model
The Dynamic Information Model
 
The Future of Software is Open Source
The Future of Software is Open SourceThe Future of Software is Open Source
The Future of Software is Open Source
 
Micro Everything - Our Road to Scale
Micro Everything - Our Road to ScaleMicro Everything - Our Road to Scale
Micro Everything - Our Road to Scale
 
Cyclone DDS Unleashed: The Origins
Cyclone DDS Unleashed: The OriginsCyclone DDS Unleashed: The Origins
Cyclone DDS Unleashed: The Origins
 

Recently uploaded

Top Rated Pune Call Girls Warje ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Warje ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Warje ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Warje ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Call Girls in Nagpur High Profile
 
Call Girls Bidadi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Bidadi Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Bidadi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Bidadi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangaloreamitlee9823
 
Bur Dubai Call Girl Service #$# O56521286O Call Girls In Bur Dubai
Bur Dubai Call Girl Service #$# O56521286O Call Girls In Bur DubaiBur Dubai Call Girl Service #$# O56521286O Call Girls In Bur Dubai
Bur Dubai Call Girl Service #$# O56521286O Call Girls In Bur Dubaiparisharma5056
 
Hyderabad 💫✅💃 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATIS...
Hyderabad 💫✅💃 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATIS...Hyderabad 💫✅💃 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATIS...
Hyderabad 💫✅💃 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATIS...sonalitrivedi431
 
Call Girls Alandi Road Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Alandi Road Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Alandi Road Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Alandi Road Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
Dark Dubai Call Girls O525547819 Skin Call Girls Dubai
Dark Dubai Call Girls O525547819 Skin Call Girls DubaiDark Dubai Call Girls O525547819 Skin Call Girls Dubai
Dark Dubai Call Girls O525547819 Skin Call Girls Dubaikojalkojal131
 
CFO_SB_Career History_Multi Sector Experience
CFO_SB_Career History_Multi Sector ExperienceCFO_SB_Career History_Multi Sector Experience
CFO_SB_Career History_Multi Sector ExperienceSanjay Bokadia
 
Booking open Available Pune Call Girls Ambegaon Khurd 6297143586 Call Hot In...
Booking open Available Pune Call Girls Ambegaon Khurd  6297143586 Call Hot In...Booking open Available Pune Call Girls Ambegaon Khurd  6297143586 Call Hot In...
Booking open Available Pune Call Girls Ambegaon Khurd 6297143586 Call Hot In...Call Girls in Nagpur High Profile
 
Brand Analysis for reggaeton artist Jahzel.
Brand Analysis for reggaeton artist Jahzel.Brand Analysis for reggaeton artist Jahzel.
Brand Analysis for reggaeton artist Jahzel.GabrielaMiletti
 
CALL ON ➥8923113531 🔝Call Girls Husainganj Lucknow best Female service 🧳
CALL ON ➥8923113531 🔝Call Girls Husainganj Lucknow best Female service  🧳CALL ON ➥8923113531 🔝Call Girls Husainganj Lucknow best Female service  🧳
CALL ON ➥8923113531 🔝Call Girls Husainganj Lucknow best Female service 🧳anilsa9823
 
Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...amitlee9823
 
Personal Brand Exploration - Fernando Negron
Personal Brand Exploration - Fernando NegronPersonal Brand Exploration - Fernando Negron
Personal Brand Exploration - Fernando Negronnegronf24
 
OSU毕业证留学文凭,制做办理
OSU毕业证留学文凭,制做办理OSU毕业证留学文凭,制做办理
OSU毕业证留学文凭,制做办理cowagem
 
reStartEvents 5:9 DC metro & Beyond V-Career Fair Employer Directory.pdf
reStartEvents 5:9 DC metro & Beyond V-Career Fair Employer Directory.pdfreStartEvents 5:9 DC metro & Beyond V-Career Fair Employer Directory.pdf
reStartEvents 5:9 DC metro & Beyond V-Career Fair Employer Directory.pdfKen Fuller
 
WhatsApp 📞 8448380779 ✅Call Girls In Salarpur Sector 81 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Salarpur Sector 81 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Salarpur Sector 81 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Salarpur Sector 81 ( Noida)Delhi Call girls
 
Top Rated Pune Call Girls Deccan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Deccan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Deccan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Deccan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Call Girls in Nagpur High Profile
 
Motilal Oswal Gift City Fund PPT - Apr 2024.pptx
Motilal Oswal Gift City Fund PPT - Apr 2024.pptxMotilal Oswal Gift City Fund PPT - Apr 2024.pptx
Motilal Oswal Gift City Fund PPT - Apr 2024.pptxMaulikVasani1
 
Dubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big Boody
Dubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big BoodyDubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big Boody
Dubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big Boodykojalkojal131
 
Call Girls Hosur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hosur Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Hosur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hosur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangaloreamitlee9823
 
Vip Modals Call Girls (Delhi) Rohini 9711199171✔️ Full night Service for one...
Vip  Modals Call Girls (Delhi) Rohini 9711199171✔️ Full night Service for one...Vip  Modals Call Girls (Delhi) Rohini 9711199171✔️ Full night Service for one...
Vip Modals Call Girls (Delhi) Rohini 9711199171✔️ Full night Service for one...shivangimorya083
 

Recently uploaded (20)

Top Rated Pune Call Girls Warje ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Warje ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Warje ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Warje ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
Call Girls Bidadi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Bidadi Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Bidadi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Bidadi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
 
Bur Dubai Call Girl Service #$# O56521286O Call Girls In Bur Dubai
Bur Dubai Call Girl Service #$# O56521286O Call Girls In Bur DubaiBur Dubai Call Girl Service #$# O56521286O Call Girls In Bur Dubai
Bur Dubai Call Girl Service #$# O56521286O Call Girls In Bur Dubai
 
Hyderabad 💫✅💃 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATIS...
Hyderabad 💫✅💃 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATIS...Hyderabad 💫✅💃 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATIS...
Hyderabad 💫✅💃 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATIS...
 
Call Girls Alandi Road Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Alandi Road Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Alandi Road Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Alandi Road Call Me 7737669865 Budget Friendly No Advance Booking
 
Dark Dubai Call Girls O525547819 Skin Call Girls Dubai
Dark Dubai Call Girls O525547819 Skin Call Girls DubaiDark Dubai Call Girls O525547819 Skin Call Girls Dubai
Dark Dubai Call Girls O525547819 Skin Call Girls Dubai
 
CFO_SB_Career History_Multi Sector Experience
CFO_SB_Career History_Multi Sector ExperienceCFO_SB_Career History_Multi Sector Experience
CFO_SB_Career History_Multi Sector Experience
 
Booking open Available Pune Call Girls Ambegaon Khurd 6297143586 Call Hot In...
Booking open Available Pune Call Girls Ambegaon Khurd  6297143586 Call Hot In...Booking open Available Pune Call Girls Ambegaon Khurd  6297143586 Call Hot In...
Booking open Available Pune Call Girls Ambegaon Khurd 6297143586 Call Hot In...
 
Brand Analysis for reggaeton artist Jahzel.
Brand Analysis for reggaeton artist Jahzel.Brand Analysis for reggaeton artist Jahzel.
Brand Analysis for reggaeton artist Jahzel.
 
CALL ON ➥8923113531 🔝Call Girls Husainganj Lucknow best Female service 🧳
CALL ON ➥8923113531 🔝Call Girls Husainganj Lucknow best Female service  🧳CALL ON ➥8923113531 🔝Call Girls Husainganj Lucknow best Female service  🧳
CALL ON ➥8923113531 🔝Call Girls Husainganj Lucknow best Female service 🧳
 
Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
 
Personal Brand Exploration - Fernando Negron
Personal Brand Exploration - Fernando NegronPersonal Brand Exploration - Fernando Negron
Personal Brand Exploration - Fernando Negron
 
OSU毕业证留学文凭,制做办理
OSU毕业证留学文凭,制做办理OSU毕业证留学文凭,制做办理
OSU毕业证留学文凭,制做办理
 
reStartEvents 5:9 DC metro & Beyond V-Career Fair Employer Directory.pdf
reStartEvents 5:9 DC metro & Beyond V-Career Fair Employer Directory.pdfreStartEvents 5:9 DC metro & Beyond V-Career Fair Employer Directory.pdf
reStartEvents 5:9 DC metro & Beyond V-Career Fair Employer Directory.pdf
 
WhatsApp 📞 8448380779 ✅Call Girls In Salarpur Sector 81 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Salarpur Sector 81 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Salarpur Sector 81 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Salarpur Sector 81 ( Noida)
 
Top Rated Pune Call Girls Deccan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Deccan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Deccan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Deccan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
 
Motilal Oswal Gift City Fund PPT - Apr 2024.pptx
Motilal Oswal Gift City Fund PPT - Apr 2024.pptxMotilal Oswal Gift City Fund PPT - Apr 2024.pptx
Motilal Oswal Gift City Fund PPT - Apr 2024.pptx
 
Dubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big Boody
Dubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big BoodyDubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big Boody
Dubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big Boody
 
Call Girls Hosur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hosur Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Hosur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hosur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
 
Vip Modals Call Girls (Delhi) Rohini 9711199171✔️ Full night Service for one...
Vip  Modals Call Girls (Delhi) Rohini 9711199171✔️ Full night Service for one...Vip  Modals Call Girls (Delhi) Rohini 9711199171✔️ Full night Service for one...
Vip Modals Call Girls (Delhi) Rohini 9711199171✔️ Full night Service for one...
 

Intro To Starling Framework for ActionScript 3.0

  • 1. TM & © 2012 Rivello Multimedia Consulting
  • 2. Topic Speaker •Samuel Asher Rivello is the principal of Rivello Multmedia Consultng (RMC). Rivello Multmedia Consultng (RMC) provides sofware consultng services for Adobe’s Flash and Flex as well as HTML5 standards. •We consult on sofware architecture for apps and for games, advergames, and monetzed virtual worlds targetng browsers, desktop, and cross-device mobile. •We champion best practces, setup efcient team workfows, and provide corporate technical training. Agenda •Learn the benefts and syntax of Starling for gaming Audience •Intermediate to Advanced ActionScript 3.0 Developers Take-Away •All source code and documentation will be available to attendees info@RivelloMultimediaConsulting.com TM & © 2012 Rivello Multimedia Consulting
  • 3. Topic Notice 1. Stage3D is new 2. Starling is new 3. I am new So... features and syntax may change and my code may not show the 'best' solutions. info@RivelloMultimediaConsulting.com TM & © 2012 Rivello Multimedia Consulting
  • 4. Agenda Three Sections 1. What is Stage3D? • Benefits & Challenges • Frameworks 2. What is Starling? • Overview • Implementation (Code Samples!) 3. Conclusion • Q&A • References info@RivelloMultimediaConsulting.com TM & © 2012 Rivello Multimedia Consulting
  • 5. SECTION 1 What is Stage3D? info@RivelloMultimediaConsulting.com TM & © 2012 Rivello Multimedia Consulting
  • 6. Stage3D What is Stage3D Figure 1 ● Stage 3D, previously codenamed "Molehill," is a method of 2D and 3D rendering with a set of low-level GPU-accelerated APIs ● Available for Flash Player 11.x and AIR 3.2 (iOS/Android) ● Runs on a unique layer under the display list (See Figure 1.) Today, you can publish the fastest Flash games ever on the widest array of devices including iPad 3! info@RivelloMultimediaConsulting.com TM & © 2012 Rivello Multimedia Consulting
  • 7. Stage3D Benefits ● With Stage3D – Render hundreds of thousands of z-bufered triangles to be rendered at HD resoluton in full screen at 60 Hz (instead of just 'thousands' at 30 Hz without Stage3D). ● GPU not CPU now handles rendering so rendering is more performant and you have more CPU power for your coding. info@RivelloMultimediaConsulting.com TM & © 2012 Rivello Multimedia Consulting
  • 8. Stage3D Challenges ● The language is very low-level (difcult* to read and write) ● All 'sprites' must be patched together from triangles (triangles are the 'pixel' of 3D graphics) ● Sprites handling mouse gestures and using vector graphics is not supported * Especially compared to the (non-Stage3D) traditonal Display List info@RivelloMultimediaConsulting.com TM & © 2012 Rivello Multimedia Consulting
  • 9. Stage3D Sounds powerful, but hard to use... ● True. ● Luckily, we have some help. ● Many frameworks exist to make our lives easier. info@RivelloMultimediaConsulting.com TM & © 2012 Rivello Multimedia Consulting
  • 10. Stage3D Frameworks AS3 frameworks with Stage3D for 2D gaming; ● Starling ● ND2D ● Citrus Engine (Recently Upgraded To Stage3D) AS3 frameworks for Stage3D for 3D gaming; ● Flare3D ● Alternatva3D (Recently Open-Source) info@RivelloMultimediaConsulting.com TM & © 2012 Rivello Multimedia Consulting
  • 11. SECTION 2 What is Starling? info@RivelloMultimediaConsulting.com TM & © 2012 Rivello Multimedia Consulting
  • 12. Starling What is Starling? – A 2D AS3 Framework for Stage3D ● Free & Open Source – Easy to use so you can focus on your games! ● Platorm independent – Browser, Desktop, iOS, Android, Blackberry Tablet. ● Amazing Performance & Familiar API -Starling is a pure ActonScript 3 library that mimics the conventonal Flash display list architecture. ● Embraced* by Adobe – Adobe supports the development of Starling and plans to integrate it tghtly into its tools. You get the best of both worlds: corporate commitment and a vivid community. * Very Interestng – This means tghter integraton with Flash Player / AIR improvements and bigger marketng muscle for the framework. The 2D Framework with the biggest community has a distnct advantage. info@RivelloMultimediaConsulting.com TM & © 2012 Rivello Multimedia Consulting
  • 13. Starling Core Classes info@RivelloMultimediaConsulting.com TM & © 2012 Rivello Multimedia Consulting
  • 14. Starling Core Concepts Vector (FLA) SpriteSheet (JPG) ● Setup - The Startup.as document-class extends Sprite and composes an instance of Game.as. ● Starling.juggler.add (displayObject) - Required to have 'enterFrame'. Assets ● TextureAtlas – An instance is required for each 'asset' you want to render. Its defned by a SpriteSheet and XML info about it. You cannot directly use vector source assets such as Flash tmeline animaton. ● I don't use TextureAtlas or SpriteSheets – I use a Starling extension DynamicTextureAtlasGenerator that allows for full vector source assets. info@RivelloMultimediaConsulting.com TM & © 2012 Rivello Multimedia Consulting
  • 15. DEMO Let's See Starling In Action! 1. The Official Demo - http://gamua.com/starling/demo/ 2. My Hello World 3. My Flyer Game (Simple Version) 4. My Flyer Game (OOP Version) info@RivelloMultimediaConsulting.com TM & © 2012 Rivello Multimedia Consulting
  • 16. Starling Extensions ParticleSystem Designer Particle System In Game (FlyerGame) ● Allow for additonal functonality within Starling projects. My favorites; ● PartcleSystem – Generate efects like smoke & fre ● DynamicTextureAtlas Generator – Use vector source assets info@RivelloMultimediaConsulting.com TM & © 2012 Rivello Multimedia Consulting
  • 17. Q&A! Three Sections 1. What is Stage3D? • Benefits & Challenges • Frameworks 2. What is Starling? • Overview • Implementation (Code Samples!) 3. Conclusion • Q&A • References info@RivelloMultimediaConsulting.com TM & © 2012 Rivello Multimedia Consulting
  • 18. SECTION 3 Conclusion info@RivelloMultimediaConsulting.com TM & © 2012 Rivello Multimedia Consulting
  • 19. References Starling Framework Today's Presentation (Includes All Other Links) http://bit.ly/IntroStarling info@RivelloMultimediaConsulting.com TM & © 2012 Rivello Multimedia Consulting
  • 20. Thanks! Presentation Questions Send Questions & Comments info@RivelloMultimediaConsulting.com Consulting Inquiries (RivelloMultimediaConsulting.com) Software Architecture, Consulting, Development, & Training. info@RivelloMultimediaConsulting.com info@RivelloMultimediaConsulting.com TM & © 2012 Rivello Multimedia Consulting
  • 21. Thanks! Presentation Questions Send Questions & Comments info@RivelloMultimediaConsulting.com Consulting Inquiries (RivelloMultimediaConsulting.com) Software Architecture, Consulting, Development, & Training. info@RivelloMultimediaConsulting.com info@RivelloMultimediaConsulting.com TM & © 2012 Rivello Multimedia Consulting