Package sprites.base

Examples of sprites.base.SpritesListener


//    GLProfile glp = GLProfile.getDefault(GLProfile.getDefaultDevice());
    GLProfile glp = GLProfile.get(GLProfile.GL4);
    GLCapabilities caps = new GLCapabilities(glp);
    GLWindow window = GLWindow.create(caps);
   
    SpritesListener listener = new SpritesListener(new Configuration(null, null, 800, 600, 800, 600));
   
    Animator animator = new Animator(window);
   
    window.setVisible(true);
    animator.start();
View Full Code Here


    this.config.subscribe(this);

//    GLProfile glp = GLProfile.getDefault(GLProfile.getDefaultDevice());
//    GLCapabilities caps = new GLCapabilities(glp);
   
    this.listener = new SpritesListener(this.config);
    this.ioListener = new SpritesIOListenerAWT(this.config);

    /* The following code stays in case NEWT gets the right configuratability that I need
     *
     * this.glWindow = GLWindow.create(caps);
View Full Code Here

TOP

Related Classes of sprites.base.SpritesListener

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.