Advertisement
Guest User

Untitled

a guest
Mar 20th, 2025
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. init python:
  2. del_exit = False
  3.  
  4. transform change_transform(old, new):
  5. contains:
  6. old
  7. yalign 1.0
  8. xalign 1.0
  9. linear 0.1 xalign (1.3 if del_exit else 1.0)
  10. contains:
  11. new
  12. yalign 1.0
  13. xalign 1.1
  14. linear 0.1 xalign 1.0
  15.  
  16. And then in the script:
  17.  
  18. label start:
  19. del "blablabla"
  20. $ del_exit = False # Ensure she stays
  21. other "Del remains visible."
  22.  
  23. $ del_exit = True
  24. other "Del will now leave."
  25. $ del_exit = False # Reset for future lines
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement