forked from los-cocos/cocos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_callfuncs.py
44 lines (34 loc) · 1.14 KB
/
test_callfuncs.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
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.1, s, q"
tags = "CallFuncS, Show"
import cocos
from cocos.director import director
from cocos.actions import CallFuncS, Show, 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()
self.sprite = Sprite('grossini.png', (x//2, y//2) )
self.sprite.visible = False
self.add( self.sprite )
def make_visible( sp ):
sp.do( Show() )
self.sprite.do( Delay(1) + CallFuncS( make_visible ) )
description = """Sprite grossini starts invisible, after 1 second will turn
visible thanks to actions CallFuncS and Show
"""
def main():
print(description)
director.init()
test_layer = TestLayer ()
main_scene = cocos.scene.Scene (test_layer)
director.run (main_scene)
if __name__ == '__main__':
main()