renpy define character

Solutions on MaxInterview for renpy define character by the best coders in the world

showing results for - "renpy define character"
Noemi
05 Jun 2016
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
Mika
25 Sep 2016
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.