Wiki

Case Status
Log In

Wiki

 
Home ยป Frequently Asked Questions
Index
Navigation
Community Wiki

Frequently Asked Questions

What are the System Requirements for PlayMaker?

PlayMaker requires Unity 4.6 or higher.

The system requirements are the same as Unity:

http://unity3d.com/unity/system-requirements

Does PlayMaker work with the free version of Unity?

Yes!

Can I make an entire game using Playmaker?

Yes! In fact, here's a good way to tell how far you can go with Playmaker... take a look at the actions in the online documentation. If you can make your project with these, you're good to go!
 
We're always adding new actions, and it's easy to share actions with other users on the Playmaker Forum and the new Ecosystem Browser.
 
Many third party assets also support Playmaker, so you can use their systems inside Playmaker. Check out our Add-ons page for more info.
 
Also check out our Showcase page for projects that use Playmaker.
 
 
I am an artist/designer/non engineer type who can barely write a few lines of code. Can I use Playmaker?
 
Yes! Playmaker is designed to empower all members of a team (designers, artists, and engineers).
 
Take advantage of hundreds of built in modular actions and get results quickly. 
 
 
I am an engineer who loves writing code! Why would I need Playmaker?
 
If you're a programmer, you can make your own actions, and use Playmaker's powerful editor to quickly build and debug state machines. 
 

A well designed visual state editor is the backbone in many a triple AAA game. It empowers all disciplines to work together (artists, designers, and engineers).

What kind of support do you offer?
 
If you have a question, head over to our forum or email us at info@hutonggames.com
 
Are updates free? 
 

Yes! All 1.X updates are free and accessible via the Unity Asset Store.

Does PlayMaker support all Unity platforms?

Playmaker supports all official Unity platforms except for Flash (which has been discontinued by Unity). 

We are working with developers to make sure we support the new console platforms (Wii U, XBox One, PS4).

Does PlayMaker support mobile devices?

PlayMaker runs on iOS and Android with a few caveats:

  • You have to be more mindful of performance on mobile platforms. For example, if you create a lot of objects with FSMs you might need to do this outside of the main game loop, and just enable/disable them in the game loop. A future update will introduce a built in Object Pool system to make this very easy to do. For now you could use an "Init" state that creates the objects and then use ActivateGameObject to turn the objects off/on as needed.
  • OnGUI can be very expensive on mobile platforms, so you might consider using GUIElement actions instead of GUI or GUILayout actions. Disabling GUILayout with UseGUILayout can also help. However, if the GUI isn't performance critical (e.g., pause menus), you might prefer the convenience of GUILayout actions. UPDATE: Version 1.1 introduces a PlayMakerGUI component that is cheaper that Unity's built in OnGUI when used on lots of game objects.
  • You should test on your target device as you develop so you stay within its limits.

Is there a discounted educational license for PlayMaker?

Yes, we're pleased to offer a 30% academic discount.

Is there a free trial version of PlayMaker?

Not yet, but feel free to email info@hutonggames.com for more info.

How does the performance of a PlayMakerFSM compare to a regular script?

In all but the most strenuous test cases the runtime performance impact is minimal. For example, a stress test with 800 objects running FSMs runs at 40 fps where 800 objects with an equivalent script runs at 48 fps. Normally you wouldn't have any where close to 800 FSMs running at the same time. In most normal situations the difference would be hard to detect. Not to mention that a PlayMakerFSM can do a lot more than one hardwired script...

For real world performance tests we've ported scripted game samples to run 100% with Playmaker. In these tests, the 100% Playmaker version of the project runs at the same frame rate as the scripted version: https://github.com/jeanfabre/PlayMaker--UnityLearn--2dPlatformer

The biggest extra cost over a regular script happens when loading/creating the FSM. In general it's a good idea to not create game objects in the game loop - instead you should create an object pool outside the main loop, then enable/disable objects in the main game loop as needed. Search for Object Pooling on the forums and in Add-Ons for more info. To be clear, using an object pool is a good idea whether you use Playmaker or not, especially on mobile platforms!

Playmaker also contains optimizations that you'd otherwise have to figure out while using Unity (caching components, caching raycasts, central GUI manager...). For example, the PlayMakerGUI component is much faster than the built in Unity OnGUI when used on lots of objects. So Playmaker OnGUI can actually be faster than regular scripts using OnGUI!

Performance is something we continue to monitor and improve where we find problems.

Is there a source code license for PlayMaker?

No. However, the source code for all the actions is freely available and they do most of the runtime work in an FSM.

Where do I report bugs or feature requests?

PlayMaker includes an integrated bug reporter. Please find more details here.

 

 

 

 

Tags:

Last modified on 11/3/2017 2:03 PM by User.

  • RSS Feed