Advertisement
Guest User

Untitled

a guest
Dec 9th, 2022
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.80 KB | Gaming | 0 0
  1. label start:
  2.    
  3.     scene living_room ### main background
  4.     show maria01 ### animation sprite
  5.  
  6.     pause 1.5
  7.  
  8.     show maria_mouth_01 ### mouth animation 01
  9.  
  10.     voice "voice/001.ogg"
  11.     nez "Good morning.{w=0.7}{nw}" ### at the end, write the total length of the audio file and switch to blinking eyes mode
  12.  
  13.     show maria_blink01 ### girl blinking eyes
  14.  
  15.     $ store._history = False ### specify not to write the following line to the history
  16.  
  17.     nez "Good morning.{fast}" ### instantly call the line of text that the character spoke. Аudio file is not registered
  18.  
  19.     $ store._history = True ### allow writing the following line of the dialog to history
  20.  
  21.  
  22.  
  23.     show maria02 ### animation sprite
  24.  
  25.     pause 3.2
  26.  
  27.     show maria_mouth_02 ### mouth animation 02
  28.  
  29.     voice "voice/002.ogg"
  30.     nez "Woke up?{w=0.5}{nw}"
  31.  
  32.     $ store._history = False
  33.  
  34.     show maria_blink01
  35.  
  36.     nez "Woke up??{fast}"
  37.  
  38. #mouth.rpy
  39. init:
  40.     image maria_mouth_01:
  41.         pause 0.3
  42.         "p01_8"
  43.         pause 0.1
  44.         "p01_2"
  45.         pause 0.1
  46.         "p01_3"
  47.         pause 0.1
  48.         "p01_8"
  49.         pause 0.1
  50.         "p01_4"
  51.         pause 0.1
  52.         "p01_5"
  53.         pause 0.2
  54.         "p01_8"
  55.         pause 0.1
  56.  
  57.     image maria_mouth_02:
  58.         pause 0.3
  59.         "p02_8"
  60.         pause 0.1
  61.         "p02_1"
  62.         pause 0.1
  63.         "p02_2"
  64.         pause 0.1
  65.         "p02_8"
  66.         pause 0.2
  67.         "p02_3"
  68.         pause 0.1
  69.         "p02_4"
  70.         pause 0.1
  71.         "p02_5"
  72.         pause 0.1
  73.         "p02_6"
  74.         pause 0.1
  75.         "p02_4"
  76.         pause 0.3
  77.         "p02_8"
  78.         pause 0.1
  79.  
  80. ### eyes
  81. init:
  82. ####глаза
  83.     image maria_blink01:
  84.         "p01_8"
  85.         pause 3.2
  86.         "p01_6"
  87.         pause 0.1
  88.         "p01_7"
  89.         pause 0.1
  90.         repeat
  91.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement