예제 #1
0
파일: funcs.py 프로젝트: fabr1z10/glib3
def togglePause():
    if vars.paused:
        example.get('main').enableUpdate(True)
        example.removeByTag('shader')
    else:
        example.get('main').enableUpdate(False)
        a = Entity(pos=[0, 0, 1], tag='shader')
        a.addComponent(
            compo.ShapeGfxColor(shape=sh.Rect(256, 256),
                                fill=sh.SolidFill(r=0, g=0, b=0, a=64)))
        example.get('diag').add(a)
    vars.paused = not vars.paused
예제 #2
0
파일: funcs.py 프로젝트: fabr1z10/glib3
def togglePause():
    if vars.paused:
        example.get('main').enableUpdate(True)
        example.removeByTag('shader')
        #msg : example.Wrap1 = example.get('msg')
        #if msg.valid:
        #    example.killScript('msgscript')
        #    example.removeByTag('msg')
        #    example.removeByTag('msgbox')
        #    example.get('player').setState('walk', {})    
    else:
        example.get('main').enableUpdate(False)
        a = Entity(pos=[0,0,1], tag='shader')
        a.addComponent (compo.ShapeGfxColor(shape = sh.Rect(256, 256), fill = sh.SolidFill(r=0, g=0, b=0, a=64)))
        example.get('diag').add(a)
    vars.paused = not vars.paused
예제 #3
0
 def f():
     example.removeByTag(item_id)
예제 #4
0
 def f():
     if entity_id is not None:
         example.remove(entity_id)
     else:
         example.removeByTag(tag)
예제 #5
0
 def f():
     if id is not None:
         example.remove(id)
     else:
         example.removeByTag(tag)
예제 #6
0
 def _remove_item():
     example.removeByTag(item_id)