When comparing Starling vs Adventure Game Studio, the Slant community recommends Adventure Game Studio for most people. In the question“What are the best 2D game engines?” Adventure Game Studio is ranked 23rd while Starling is ranked 78th. The most important reason people chose Adventure Game Studio is:
Good for newbie game creators. Can be used for prototyping: on several occasions was used to make a demo/experimental version before creating a final commercial product on different engine.
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 Easy to learn tool
Good for newbie game creators. Can be used for prototyping: on several occasions was used to make a demo/experimental version before creating a final commercial product on different engine.
Pro Completely free and open source
AGS is licensed under Artistic License 2.0 and is completely free for use for creating both freeware and commercial games.
Pro Relatively well documented
Besides the manual there are multiple text and video tutorials and code samples written by community.
Pro Used for a number of high-profile commercial releases
Adventure Game Studio has been used to develop games such as "Resonance", "Blackwell" series, "Gemini Rue", "Primordia".
Pro Lots of assets available
An extensive library of game templates and script modules accumulated over years. You can construct a simple game in hours (if you know what you are doing).
Pro Friendly community
An old, big and active community which would support newcomers not only in learning basics of the engine, but can help with every aspect of game making (including art, voice acting, moral support, etc).
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 Natively supports only 2D
2D only native support, 3D could be supported with plugins though.
Con Uses dated tech
Engine is based on the old technologies, which impose number of limitations and may cause problems on latest systems (level of annoyance varies depending on your priorities).
Con Graphics renderer is a bit dated
Graphics renderer is not well optimized for high-resolution games and complex effects.
Con No visual editor for scripts
You have to actually write all scripts yourself.
Con Development is slow
Further development of the engine is currently slow, done by only few people in their free time.
Con AGS Script isn't as full-featured as other scripting languages
Its own scripting language has lower syntax capabilities compared to modern script languages.
Con Assets cover almost exclusively adventure/quest genre
The features, script functions and game templates are very biased towards adventure/quest genre. The non-adventure games were made in AGS (2D shooters, platformers, turn-based strategies), but their development usually requires to write everything from scratch.
Con Workflow is closely coupled with the editor
Workflow is very tied to the editor and custom file formats, which can cause problems for bigger, more professional projects (interfering with source control, parallel development, automated builds, etc)