Book Image

OUYA Game Development by Example

By : John Donovan
Book Image

OUYA Game Development by Example

By: John Donovan

Overview of this book

The OUYA console and development kit gives you the power to publish video games for the players, creating a console marketplace of the gamers, for the gamers, and by the gamers. Using the OUYA developer kit and the Unity3D game engine, even beginners with a captivating game idea can bring it to life with a hint of imagination. OUYA Game Development by Example uses a series of feature-based, step-by-step tutorials that teach beginners how to integrate essential elements into a game engine and then combine them to form a polished gaming experience.
Table of Contents (18 chapters)
OUYA Game Development by Example Beginner's Guide
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
Index

Time for action – running your first test on OUYA


Perform the following steps to run your code on OUYA:

  1. Verify that your project settings are properly configured for deploying to the OUYA.

  2. Turn on your OUYA console and connect it to your computer with a USB cable.

  3. Verify that your computer recognizes the OUYA console by using the following command in your command line:

    adb devices
    

    Tip

    If your computer isn't able to locate the OUYA console immediately, the solution may be as simple as jump-starting the adb process. Run adb kill-server and then adb devices in your command line to restart the device manager and output a new list of connected devices.

  4. Click on Build & Run in Unity's File menu to deploy your prototype to the console. As soon as it's finished building, your 3D text prototype will appear on the screen that your console is connected to.

Remember that you haven't coded any controller-based input yet, so your OUYA controller can't interact with the prototype, but if you connect your...