I ran into a problem with createRoom. Basically the user is not automatically joining if the isGame = false.
Example:
The following code works. The room is created and the user automatically joins the room.
Code: Select all
room = new Object();
room.name = "RoomName";
room.isGame = true;
room.maxUsers = 10;
smartFox.createRoom(room);
The Following code does not work. The room is created but the user remains in their current room.
Code: Select all
room = new Object();
room.name = "RoomName";
room.isGame = false;
room.maxUsers = 10;
smartFox.createRoom(room);
OR
room = new Object();
room.name = "RoomName";
room.maxUsers = 10;
smartFox.createRoom(room);
I have also tried setting the exitCurrentRoom to both true or false
Thanks
rsnail