room_set_width

Sets the width, in pixels, of a given room.

Syntax:

room_set_width( ind, w );


Argument Description
ind The index of the room to set the width of.
w The new width of the room in pixels.


Returns: N/A


Description

With this function you can change (or set) the width of any room in your game except the current one.


Example:

global.myroom = room_add();
room_set_width(global.myroom, 640);
room_set_height(global.myroom, 480);
room_set_persistent(global.myroom, false);

This will create a new room and store its index in the variable "global.myroom". It will then set its width to 640 pixels, its height to 480 pixels, its caption to 'Game Room' and its persistence to 'false'.


Back: Rooms
Next: room_set_persistent
© Copyright YoYo Games Ltd. 2018 All Rights Reserved