Package com.sertaogames.terremoto.component

Examples of com.sertaogames.terremoto.component.GameControllerComponent



  public static GameObject createController() {
    GameObject controller = new GameObject("Controller");
   
    controller.AddComponent(new GameControllerComponent());
    controller.transform.getLocalPosition().set(10, 600);
    Utils.offsetCorrection(controller.transform.getLocalPosition());
    return controller;
  }
View Full Code Here

TOP

Related Classes of com.sertaogames.terremoto.component.GameControllerComponent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.