Hello.
First of all, if you recall in RM2K/2, there's an option in Move Picture which distort the picture. My question is, is there a script dto do this?
ONe other thing. If there's no script for this, i'd like if someone could teach me a lil' bit the Bitmap class. My goal is to make distortion effects like in ff6 (House on fire, Dischord Skill, ect)
Thanks
EDIT:
Here's my slant bar code
The lines above draws something that look like an arrow. I'm trying to animate every horizontal lines of pixel to do a "wave" effect in bitmaps but i don't know how do slant a bitmap
-Dargor
First of all, if you recall in RM2K/2, there's an option in Move Picture which distort the picture. My question is, is there a script dto do this?
ONe other thing. If there's no script for this, i'd like if someone could teach me a lil' bit the Bitmap class. My goal is to make distortion effects like in ff6 (House on fire, Dischord Skill, ect)
Thanks
EDIT:
Here's my slant bar code
Code:
for i in -10..10
if i <=0
self.contents.fill_rect(50 - i, 50 + 10 - i, 150 + 1, 1, Color.new(50, 50, 50, 255))
else
self.contents.fill_rect(50 + i, 50 + 10 - i, 150 + 1, 1, Color.new(50, 50, 50, 255))
end
end
The lines above draws something that look like an arrow. I'm trying to animate every horizontal lines of pixel to do a "wave" effect in bitmaps but i don't know how do slant a bitmap
-Dargor