Wintermute Engine Forum

Wintermute Engine => Technical forum => Topic started by: MMR on April 01, 2006, 11:03:37 AM

Title: Wait for scrolling
Post by: MMR on April 01, 2006, 11:03:37 AM
It's possible to wait for scene scrolling??

For instance my actor go to an object, and I want he talks after the scene scrolling is finished.

Thanks!
Title: Re: Wait for scrolling
Post by: metamorphium on April 01, 2006, 11:05:31 AM
just from the top of my head:

while (Scene.IsScrolling) Sleep(1);

(IsScrolling is Attribute, not method)
Title: Re: Wait for scrolling
Post by: MMR on April 01, 2006, 02:16:05 PM
Yep, I know this... but I was thinking in some kind of Game method... maybe Mnemonic could implement this?

BTW Thanks metamorphium!