Package cc.plural.ecs.component.reporter

Examples of cc.plural.ecs.component.reporter.ReporterComponent


        System.out.println(MatrixPrinter.matrix2String(MatrixPrinter.MAJOR.ROW, mat4x4));
       
        engine = new Engine();

        GameObject tank = TankFactory.createTank(engine);
        tank.registerComponent(new ReporterComponent());
        tank.setPosition(20, 20);
        tank.setScale(2);
        tank.updateWorldTransforms();
       
        tank.getWorld().load(mat4x4);
View Full Code Here

TOP

Related Classes of cc.plural.ecs.component.reporter.ReporterComponent

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.