1#Simple defining:
2define shorthandName = Character("Name", <Optional: Parameters>)
3
4#Call character:
5shorthandName "Text goes here"
6
7
8
9#######################################
10#Character with image Attribute
11
12define shorthandName = Character("Name", image="fileName")
13
14show shorthandName mad
15shorthandName "I'm a little upset."
16
17shorthandName happy "But it's just a passing thing."
18
19 #without the image in the definition, you'd have to type in
20 #show shorthandName happy
21
22 #Putting an @ in between the image specifier ("happy") between the
23 #character's shorthand name ("shorthandName @ happy") will make
24 #that only apply to one line.
25
26
27
28
1#Simple defining:
2define shorthandName = Character("Name", <Optional: Parameters>)
3
4#Call character:
5shorthandName "Text goes here"
6
7
8
9#######################################
10#Character with image Attribute
11
12define shorthandName = Character("Name", image="fileName")
13
14show shorthandName mad
15shorthandName "I'm a little upset."
16
17shorthandName happy "But it's just a passing thing."
18
19 #without the image in the definition, you'd have to type in
20 #show shorthandName happy
21
22 #Putting an @ in between the image specifier ("happy") between the
23 #character's shorthand name ("shorthandName @ happy") will make
24 #that only apply to one line.