- Joined
- Oct 24, 2015
- Messages
- 1
- Reaction score
- 0
- First Language
- English
- Primarily Uses
I just recently bought RPG Maker VX Ace, and I'm relatively new to it. However, I am a fairly advanced programmer, and I'm picking up Ruby quite easily. But I've encountered a problem:
In the process of trying to make an alternate title sequence, I tried to display text directly to the Scene / Window / whatever. This is what I have so far, located in the Scripts at Window_IntroText:
class Window_IntroText < Window_ScrollText
def initialize
super
draw_text_ex(4,0,"Sample Text")
show
end
end
I want to display more text, but with a sight delay before it appears. Is there any way to do this?? Please Halp!
I've also tried Graphics.wait(10) and sleep(10) and even tried wait_for_one_character, but I get an error:
can't yield from root fiber
What do I do????? Tsukihime-senpai, Galv, anyone, reply to this a.s.a.p. plez.
Should I omit inheriting from Window_ScrollText, and just inherit directly from Window_Base?? Or is there a way to use Fiber.yield without receiving an error??
In the process of trying to make an alternate title sequence, I tried to display text directly to the Scene / Window / whatever. This is what I have so far, located in the Scripts at Window_IntroText:
class Window_IntroText < Window_ScrollText
def initialize
super
draw_text_ex(4,0,"Sample Text")
show
end
end
I want to display more text, but with a sight delay before it appears. Is there any way to do this?? Please Halp!
I've also tried Graphics.wait(10) and sleep(10) and even tried wait_for_one_character, but I get an error:
can't yield from root fiber
What do I do????? Tsukihime-senpai, Galv, anyone, reply to this a.s.a.p. plez.
Should I omit inheriting from Window_ScrollText, and just inherit directly from Window_Base?? Or is there a way to use Fiber.yield without receiving an error??


