forked from los-cocos/cocos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_blink.py
47 lines (37 loc) · 1.38 KB
/
test_blink.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
46
47
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 2.1, s, t 2.6, s, t 3.1, s, t 5.1, s, t 5.6, s, t 6.1, s, t 8.1, s, q"
tags = "Blink"
import cocos
from cocos.director import director
from cocos.actions import Blink, Delay
from cocos.sprite import Sprite
import pyglet
class TestLayer(cocos.layer.Layer):
def __init__(self):
super( TestLayer, self ).__init__()
x,y = director.get_window_size()
template_action = Delay(2) + Blink( 3, 3 )
self.sprite = Sprite('grossini.png', (x // 2, y // 2))
self.add( self.sprite )
self.sprite.do( template_action )
self.sprite2 = Sprite('grossinis_sister1.png', (x // 2 + 50, y // 2 + 50))
self.sprite2.scale = 0.5
self.sprite2.visible = False
self.add( self.sprite2 )
self.sprite2.do( Delay(3) + template_action )
description = """
Grossini starts visible, blinks three times and stay visible;
Sheila, which starts invisible, will blink three times and stay invisible"""
def main():
print(description)
director.init()
test_layer = TestLayer ()
main_scene = cocos.scene.Scene (test_layer)
director.run (main_scene)
if __name__ == '__main__':
main()