forked from los-cocos/cocos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_fadeouttiles_up.py
45 lines (35 loc) · 1.25 KB
/
test_fadeouttiles_up.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from __future__ import division, print_function, unicode_literals
# This code is so you can run the samples without installing the package
import sys
import os
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..'))
#
testinfo = "t 0.1, s, t 1, s, t 2, s, t 3, s, t 4.1, s, t 4.2, s, q"
tags = "FadeOutUpTiles"
import pyglet
import cocos
from cocos.director import director
from cocos.actions import *
from cocos.layer import *
from pyglet import gl
class BackgroundLayer(cocos.layer.Layer):
def __init__(self):
super(BackgroundLayer, self).__init__()
self.img = pyglet.resource.image('background_image.png')
def draw( self ):
gl.glColor4ub(255, 255, 255, 255)
gl.glPushMatrix()
self.transform()
self.img.blit(0,0)
gl.glPopMatrix()
def main():
director.init( resizable=True, fullscreen=False )
main_scene = cocos.scene.Scene()
main_scene.add( BackgroundLayer(), z=0 )
e = FadeOutUpTiles( grid=(16,12), duration=2 )
# a sequence of grid actions should terminate with the action StopGrid,
# else the scene will continue to do a double render for each frame
main_scene.do( e + Reverse(e) + StopGrid() )
director.run (main_scene)
if __name__ == '__main__':
main()