Package game.finalTypes

Examples of game.finalTypes.Star


    //earth.setRotation(new Vector(0, -0.006f, 0));
    Texture texEarth = TextureLoader.getTexture("JPG",
        ResourceLoader.getResourceAsStream("res/earth.jpg"))
    earth.setTexture(texEarth);
   
    sun = new Star(7000, 500);
    sun.setPosition(new Vector(-30000, 20000, -40000))
    //sun.setRotation(new Vector(0, -0.006f, 0));
    Texture texSun = TextureLoader.getTexture("JPG",
        ResourceLoader.getResourceAsStream("res/sun.jpg"))
    sun.setTexture(texSun);
View Full Code Here

TOP

Related Classes of game.finalTypes.Star

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.