Please login or register.

Login with username, password and session length
Advanced search  

News:

This forum provides RSS feed. To query recent posts use this url. More...


Author Topic: White rectangles on scene  (Read 2189 times)

0 Members and 1 Guest are viewing this topic.

megane

  • Lurker
  • *
  • Karma: 0
  • Offline Offline
  • Posts: 13
    • View Profile
White rectangles on scene
« on: April 05, 2010, 11:23:08 PM »



Hello All,


there are some rectangle on scene. what are these?



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




Best Regards..
Logged

dwaynesch

  • Lurker
  • *
  • Karma: 0
  • Offline Offline
  • Posts: 1
    • View Profile
Re: White rectangles on scene
« Reply #1 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
Logged
 

Page created in 0.033 seconds with 20 queries.