Wintermute Engine Forum

Wintermute Engine => Technical forum => Topic started by: eborr on November 07, 2009, 12:22:01 PM

Title: Responses window on top of another window
Post by: eborr on November 07, 2009, 12:22:01 PM
Another newbie type question.

I have the requirement to set a dialgoue window on at the bottom of the sceen, then on top of that I want to use the response.def functionality, when I call the response box, it appears "under" the the new window. How can I make the response box sit on top of my new window, then disappear when a response is selected.
Title: Re: Responses window on top of another window
Post by: Mnemonic on November 07, 2009, 09:52:58 PM
If you mark your window as "in game", it will be painted before the inventory box and the response box.

Code: WME Script
  1. SomeWindow.InGame = true; // or set the property in WindowEdit
  2.  
Title: Re: Responses window on top of another window
Post by: eborr on November 08, 2009, 11:27:54 AM
works a treat thanks