Brewmeister
Sponsor
Wavy Pictures / Screen - Version: 1.0
By: Brewmeister
Introduction
Uses Picture #19 to display a picture with a wave effect, and picture #20 to capture the current screen & display it with a wave effect.
This was requested twice, so I thought I'd post it.
To create a static image, set the wave_speed to 0
Screenshots
Script
Instructions
Paste above Main.
Create a screen size (544x416) blank, transparent image in the picture folder, and use it with picture #20 to display the screen.
Now just use the "Show Picture" command and set the picture # to 19 or 20.
Compatibility
Should be compatible with just about everything. reduces the number of 'normal' pictures to 18.
Terms and Conditions
Use it however you like.
By: Brewmeister
Introduction
Uses Picture #19 to display a picture with a wave effect, and picture #20 to capture the current screen & display it with a wave effect.
This was requested twice, so I thought I'd post it.
To create a static image, set the wave_speed to 0
Screenshots

Script
Code:
#==============================================================================
# ** Sprite_Picture
# Modified to show wavy picture with picture 19,
# and a wavy screen with picture 20
# For wavy screen with picture 20:
# Place a blank picture in the Pictures folder & select it
# Set the "Position" to "Upper-Left" & 0,0
# 01APR11 - Brewmeister
#==============================================================================
class Sprite_Picture
alias wavy_init initialize
def initialize(viewport, picture)
wavy_init(viewport, picture)
if @picture.number == 19 # wavy picture
self.wave_amp = 2
self.wave_length = 208
self.wave_speed = 720
end
if @picture.number == 20 # wavy screen
self.wave_amp = 2
self.wave_length = 208
self.wave_speed = 720
end
end
alias wavy_update update
def update
if @picture_name != @picture.name and
@picture.number == 20
cap_screen = true
end
wavy_update
if cap_screen
self.bitmap = Graphics.snap_to_bitmap
end
end
end
Instructions
Paste above Main.
Create a screen size (544x416) blank, transparent image in the picture folder, and use it with picture #20 to display the screen.
Now just use the "Show Picture" command and set the picture # to 19 or 20.
Compatibility
Should be compatible with just about everything. reduces the number of 'normal' pictures to 18.
Terms and Conditions
Use it however you like.