Advertisement
Diego-Mertens

scriptarea

Apr 5th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. class Tarea8
  2. def initialize
  3. v = Viewport.new
  4. v.z = 99999
  5. v.color = Color.new(0,150,255,255)
  6.  
  7. overlay = BitmapSprite.new(Graphics.width,Graphics.height)
  8. overlay.z = 99999
  9. overlay.x = 0
  10. overlay.y = 0
  11.  
  12. fotos = [
  13. ["Graphics/Trasitions/ball_large",64,128,0,0,256,256],
  14. ["Graphics/Trasitions/speciesEffB",64,64,0,0,28,28]
  15. ]
  16.  
  17. textos = [
  18. ["Una Ball:",64,110,0,Color.new(255,0,255),Color.new(50,50,50),0],
  19. ["Un Brillo:",64,40,0,Color.new(255,0,255),Color.new(50,50,50),0]
  20. ]
  21.  
  22. pbDrawTextPositions(overlay.bitmap,textos)
  23. pbDrawImagePositions(overlay.bitmap,fotos)
  24.  
  25. end
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement