Adventure Game Studio

AGS Support => Advanced Technical Forum => Topic started by: TheKnight on Sat 24/07/2004 20:28:30

Title: Size of inventory objects??
Post by: TheKnight on Sat 24/07/2004 20:28:30
How can i set up the size of inventory objects and where?

THX
Title: Re: Size of inventory objects??
Post by: Ben on Sat 24/07/2004 22:02:42
You can do this with SetInvDimensions. If you wanted your inventory objects to be 32x24 pxels, you'd this in the game_start section of the global script:

SetInvDimensions (32, 24);
Title: Re: Size of inventory objects??
Post by: TheKnight on Sun 25/07/2004 10:27:43
Thanks. :)