Advertisement
Guest User

renpy focus band

a guest
Dec 8th, 2019
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.72 KB | None | 0 0
  1. # Makes a focus band. Note that if you make the background of your focus band the same as the
  2. # background of your current scene, you'll have to show these to another layer or else your scene
  3. # will fade to black. (cf: show your_background onlayer middle)
  4.  
  5. show your_background:
  6.     yanchor -0.23
  7.    
  8.     # makes the band 1920 x 500 px, change it as you see fit!
  9.     size (1920, 500) crop (550, 400, 1920, 500)
  10.  
  11.     # optional, pans the background to the right for 1 second
  12.     easein 1 crop (600, 400, 1920, 500)
  13.  
  14. # optional, just black lines to make the band look cleaner
  15. show blacklines
  16. with dissolve
  17.  
  18. pause(0.5)
  19.  
  20. show your_character with Dissolve(1):
  21.     yanchor -0.23
  22.     size (1920, 500) crop (0, 150, 1920, 500)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement