Ejemplo n.º 1
0
def main():
    """ Main Entry point. Create a window and set the resource dir
    """
    print ">>> Genome Hero starting up <<<"
    pyglet.options['debug_gl'] = False
    if os.name == "posix":
        pyglet.options['audio'] = ('openal', 'silent')

    window = GameWindow(width=1024, height=768, vsync=False, resizable=True)
    window.set_caption("Genome Hero")
    window.set_fullscreen(True)
    gl_init(window.width, window.height)

    print pyglet.options
    
    pyglet.clock.schedule_interval(audio.update, 1.0/60.0)
    ## Put the menu state on the stack
    window.push_state(ScriptedTransition, script=script.intro, script_name="intro")
    
    #set3D(window)

    pyglet.app.run()
Ejemplo n.º 2
0
import pyglet


from gamewindow import GameWindow
from menu import MainMenuState
from pyglet.gl import *

        
window = GameWindow(width=800, height=600)
pyglet.gl.glClearColor(0.1, 0.1, 1.0, 1.0);
glEnable(GL_BLEND)
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA)

pyglet.resource.path = ['assets']
pyglet.resource.reindex()

window.push_state(MainMenuState)
pyglet.app.run()