-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanimated_character.py
133 lines (110 loc) · 3.92 KB
/
animated_character.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
from manim import *
class SimpleCharacter(VGroup):
def __init__(self, color=BLUE, **kwargs):
super().__init__(**kwargs)
# Create basic character parts
self.body = Circle(radius=1, fill_opacity=1, color=color)
self.eyes = VGroup(
Dot(point=np.array([-0.3, 0.2, 0])),
Dot(point=np.array([0.3, 0.2, 0]))
)
self.mouth = ArcBetweenPoints(
start=np.array([-0.3, -0.2, 0]),
end=np.array([0.3, -0.2, 0]),
angle=-TAU/8
)
# Add all parts to the character
self.add(self.body, self.eyes, self.mouth)
class CharacterScene(Scene):
def construct(self):
# Create character
character = SimpleCharacter()
# Initial animation - character appears
self.play(FadeIn(character))
# Jumping animation
self.play(
character.animate.shift(UP),
rate_func=there_and_back,
run_time=1
)
# Spinning animation
self.play(Rotate(character, angle=TAU, run_time=2))
# Happy expression - mouth curve adjustment
happy_mouth = ArcBetweenPoints(
start=np.array([-0.3, -0.2, 0]),
end=np.array([0.3, -0.2, 0]),
angle=-TAU/4
)
self.play(
Transform(character.mouth, happy_mouth)
)
# Bouncing animation
self.play(
character.animate.shift(UP * 2),
rate_func=there_and_back_with_pause,
run_time=2
)
# Fade out
self.play(FadeOut(character))
# Extended character with more expressions
class ExpressiveCharacter(SimpleCharacter):
def __init__(self, **kwargs):
super().__init__(**kwargs)
self.expressions = {
'happy': self._create_happy_mouth(),
'sad': self._create_sad_mouth(),
'surprised': self._create_surprised_mouth()
}
def _create_happy_mouth(self):
return ArcBetweenPoints(
start=np.array([-0.3, -0.2, 0]),
end=np.array([0.3, -0.2, 0]),
angle=-TAU/4
)
def _create_sad_mouth(self):
return ArcBetweenPoints(
start=np.array([-0.3, -0.3, 0]),
end=np.array([0.3, -0.3, 0]),
angle=TAU/4
)
def _create_surprised_mouth(self):
return Circle(radius=0.2).shift(DOWN * 0.2)
def change_expression(self, expression):
if expression in self.expressions:
return Transform(self.mouth, self.expressions[expression])
raise ValueError(f"Expression '{expression}' not found")
class EmotionalScene(Scene):
def construct(self):
character = ExpressiveCharacter()
# Sequence of emotional changes
self.play(FadeIn(character))
self.wait()
# Happy expression
self.play(character.change_expression('happy'))
self.wait()
# Jump while happy
self.play(
character.animate.shift(UP * 1.5),
rate_func=there_and_back_with_pause,
run_time=1.5
)
# Surprised expression
self.play(character.change_expression('surprised'))
self.play(
character.animate.scale(1.2),
rate_func=there_and_back,
run_time=0.5
)
# Sad expression
self.play(character.change_expression('sad'))
self.play(
character.animate.shift(DOWN * 0.5),
run_time=1
)
# Return to happy
self.play(
character.change_expression('happy'),
character.animate.shift(UP * 0.5)
)
self.wait()
self.play(FadeOut(character))