Chaos Project

RPG Maker => RPG Maker Scripts => Script Troubleshooting => Topic started by: Zexion on April 07, 2013, 12:59:23 pm

Title: [resolved]Opacity issue?
Post by: Zexion on April 07, 2013, 12:59:23 pm
Alright, so while continuing the menu system, I ran into a wierd problem. I made a window to display some text, which is just dandy and fine, but the opacity doesn't work on the text. Here's what I mean.

I set it up using:
@win = Window_Name.new
@win.opacity = 0

Upon opening the menu, though, the text is still fully visible and looks awkward while the menu is transitioning. Is there any way to make the text transperent temporarily as well?
Title: Re: Opacity issue?
Post by: KK20 on April 07, 2013, 01:05:28 pm
Quote from: RMXP Help File
class Window

opacity
The window's opacity (0-255). Values out of range are automatically corrected.

back_opacity
The window background's opacity (0-255). Values out of range are automatically corrected.

contents_opacity
The opacity of the window's contents (0-255). Values out of range are automatically corrected.

:-*
Title: Re: Opacity issue?
Post by: Zexion on April 07, 2013, 01:07:53 pm
Haha, Thanks alot :) I kept trying contents.opacity -_-