-
Notifications
You must be signed in to change notification settings - Fork 248
/
Copy pathlabelsprite-rotate.py
36 lines (25 loc) · 1.08 KB
/
labelsprite-rotate.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
# https://forum.omz-software.com/topic/3312/labelsprite-rotate_by-problem
from scene import *
from math import *
class MyScene(Scene):
def setup(self):
self.background_color = 'black'
self.anchor_point = (0.5, 0.0)
self.timelabel = LabelNode(position=self.size / 2, text='time')
self.add_child(self.timelabel)
self.timelabel.rotation = -pi / 8.0
self.run_action(Action.repeat(Action.sequence(Action.rotate_by(pi / 4.0, 1, TIMING_EASE_IN_OUT), Action.rotate_by(-pi / 4.0, 1, TIMING_EASE_IN_OUT), 0), 0))
run(MyScene(), PORTRAIT)
# --------------------
# @omz
from scene import *
from math import *
class MyScene(Scene):
def setup(self):
self.background_color = 'black'
self.time_anchor = Node(position=(self.size.w/2, 0), parent=self)
self.timelabel = LabelNode(position=(0, self.size.h/2), text='time')
self.time_anchor.add_child(self.timelabel)
rotate_action = Action.repeat(Action.sequence(Action.rotate_to(pi / 4.0, 1, TIMING_EASE_IN_OUT), Action.rotate_to(-pi / 4.0, 1, TIMING_EASE_IN_OUT), 0), 0)
self.time_anchor.run_action(rotate_action)
run(MyScene(), PORTRAIT)