When comparing Starling vs GDevApp, the Slant community recommends Starling for most people. In the question“What are the best 2D game engines?” Starling is ranked 78th while GDevApp is ranked 83rd. The most important reason people chose Starling is:
Starling is just 12k lines of code and doesn't try to do everything — but what it does, as efficient as possible.
Specs
Ranked in these QuestionsQuestion Ranking
Pros
Pro Lightweight
Starling is just 12k lines of code and doesn't try to do everything — but what it does, as efficient as possible.
Pro Feathers User Interface Components
With Feathers, you can easily add great user interfaces to your games — or even create business apps with Starling.
Pro Free and open source
Starling is available for free with code available on GitHub.
Pro Strong community support
Forum is always active with knowledgeable developers and with lot of inside info, and post mortems.
Pro Works with Flash
With UI, you can design it in Flash Professional (powerful 2D editor), export to swf file, use GAF convert swf file to gaf file, finnally, load gaf file to Starling. GAF can convert a lot of file swf to one atlas. Alway use same resource in design files (fla) to optimize atlas size, avoid duplicate asset in atlas.
You can use flash to create animation for starling.
Pro Hardware accelerated rendering
Let the GPU do the rendering, the CPU has more important tasks to do.
Pro Cross Platform
It can be exported to web flash player, iOS, Android, Windows, and OS X
Pro Works with AIR's native extensions
Using AIR's native extensions any native code that can be written can be run and used by the game engine.
Pro Constantly updated
New features are added regularly.
Pro Better performance than most alternatives
Starling can run more animated display objects than Unity2D and many others frameworks at 60 fps.
Pro Quickly add behaviors to objects
Prebuilt behaviors can be added to objects. This is a very efficient way to add a physics engine or make a platformer game.
Lots of behaviors are included, from the most advanced (Physics, platformer, top-down movement) to really simple ones (like the behavior to destroy objects when outside the screen or the one to drag objects with mouse or touch).
Pro Powerful events system to create games without programming
No need for coding using this system which is clear and powerful: events are composed of conditions and actions.
Actions are launched when conditions are fulfilled. This is a very beginner-friendly way of making games and is still efficient for advanced usage, contrary to most other "block"/"drag'n'drop" systems.
Pro Intuitive interface
Pro Based on GDevelop
The entire webapp is based on GDevelop, an open source native game development software available for Windows & Linux, so it benefits from its advanced development.
Pro Can download an archive of the game source
Even though the tool depends on having a server up and running, you can download a copy of your game to run locally, or host somewhere else.
Pro Great UI
Sleek and user-friendly UI.
Pro Can export your game as HTML5 and for Android
Games can be packaged for Android without relying on any third party tool. You can also export your game and download it to host it on your server or let it be hosted on GDevApp.com.
Pro Shallow learning curve
Cons
Con Poor text/font support
It supports only 4 features for text rendering:
- bitmap font with batching.
1.1. basic distance fields with support for outline and filters via MeshStyle.
1.2 the new multichannel distance field, the ultimate solution for bitmap font rendering. - Draw and upload texture in runtime
So every new text field required texture uploads or vertex/idnex buffer uploads.
skipUnchanchagedFrames keep the backbuffer static for scenes without changes between frames, leveraging a good rendering optimization.
Con Engine supported mainly by one man
Its open source but in most cases community features or pull request are canceled.
Con Depends on a hosting service
If the website goes down or closes down, you'll no longer be able to develop your games using this system (but you can download a backup of your game from time to time and open it with GDevelop).
Con Cannot deploy native games
For now, games developed with GDevApp can only be deployed for the Web. Android deployment is in the works, but even then, they won't be native since they are built with web technologies.