Wintermute Engine Forum

Wintermute Engine => Technical forum => Topic started by: megane on April 05, 2010, 11:23:08 PM

Title: White rectangles on scene
Post by: megane on April 05, 2010, 11:23:08 PM


Hello All,


there are some rectangle on scene. what are these?
(http://www.ofisturka.com/images/Untitled-1.jpg)


and i dont want to see them.How can i cancel them?




Best Regards..
Title: Re: White rectangles on scene
Post by: dwaynesch on April 06, 2010, 03:22:56 AM
that is your game inventory

don't know why you don't want to use it

to kill it just  "might not be best way "

in edit game_loop.script

line# 48-50

 
Code: [Select]
// display the inventory window
  if(Game.Interactive && Game.MouseY < 45 && !Game.ResponsesVisible && !WinMenu.Visible) Game.InventoryVisible = true;
  else if(Game.MouseY > 100 || Game.ResponsesVisible || !Game.Interactive) Game.InventoryVisible = false;
to
Code: [Select]
// display the inventory window
  //if(Game.Interactive && Game.MouseY < 45 && !Game.ResponsesVisible && !WinMenu.Visible) Game.InventoryVisible = true;
 // else if(Game.MouseY > 100 || Game.ResponsesVisible || !Game.Interactive) Game.InventoryVisible = false;

or
Code: [Select]
// display the inventory window
  if(Game.Interactive && Game.MouseY < 45 && !Game.ResponsesVisible && !WinMenu.Visible) Game.InventoryVisible = false;
  else if(Game.MouseY > 100 || Game.ResponsesVisible || !Game.Interactive) Game.InventoryVisible = false;
or
delete the lines