When comparing Phaser.io vs uScript + Unity3D, the Slant community recommends Phaser.io for most people. In the question“What are the best 2D game engines?” Phaser.io is ranked 8th while uScript + Unity3D is ranked 97th.
Specs
Ranked in these QuestionsQuestion Ranking
Pros
Pro Built-in Arcade Particle system
Pro Great community resources
Pro WebGL and Canvas rendering modes
You can choose WebGL or classic HTML canvas element for game rendering.
Pro Very active development
This is one of the most developed frameworks right now.
Pro Good tutorials, courses and books
There are plenty of great learning resources available for Phaser.io.
Pro Super-simple loading of assets
Pro Excellent tools for sprites
Pro Support for Arcade Physics, Ninja Physics and p2.js
Pro Easy to learn
Most tasks are done just using 2 or 3 lines of code.
Pro Very fast to develop with
If you're browsing Slant, you probably already have a JavaScript enabled browser, which is most of what you need to get started learning JavaScript. The requirement to run a server locally on your computer while developing might make things a little more difficult
Pro No install required
All you need to do is attach Phaser script to a HTML page even without installing any extensions.
Pro Easy to understand if you have used flash
Phaser provides a similar approach as to that of Flash games, where you can load assets and place them on a stage, and even improves upon the shortcomings of actionscript. It is very easy to shift from flash to HTML5 development because of this approach.
Pro You can run it in the cloud
You can use it in popular online editors like replit, codandbox, etc.
Pro Animating is easy
Pro Has separate versions maintained by developer and the community
The creator of phaser(photonstorm) has given the older(Phaser 2.0) source code to the community for their own maintenance, and has made Phaser 3.0 with a different style and approach, trying to make it easier for beginners to learn.
Pro Automatically generates nodes for third-party script assets
uScript's nodes are a visual representation of actual code blocks, and it takes advantage of C#'s reflection capabilities to automatically create nodes for any scripts it finds in your project, regardless of the source. This makes it inherently compatible with pretty much everything.
Custom nodes can also be created by hand, for cases where the automatically created ones contain more elements than they actually need.
Pro Versatile flow diagram script model
Modeled after UDK's Kismet (the predecessor to UE4's Blueprint), uScript's scripts resemble flowcharts where each box represents a function or value, with connections between them representing program flow. This provides a better at-a-glance indication of game logic than a simple list of events, and makes complex behaviors easier to accomplish.
Pro Generates C# source code
Nodes are translated directly to C# files in your project. This is great for learning to code, and also for advanced users who can use uScript for fast prototyping and then further optimize the scripts if necessary.
Cons
Con Using Cordova to Export for Mobile
To export to mobile games you need to use cordova.
Con Official documentation is not so good
Con Poor performance
As long as your map is not larger than 600*400px, everything is fine.
Con Extremely many bugs
Con Developer ignores community needs
Con Not that easy to use
It's a lot more complicated compared to something like Playmaker. Same tasks take a lot more time.