7 lines
206 B
JavaScript
7 lines
206 B
JavaScript
|
WA.room.onEnterLayer('myLayer').subscribe(() => {
|
||
|
WA.chat.sendChatMessage("Hello!", 'Wooka');
|
||
|
});
|
||
|
|
||
|
WA.room.onLeaveLayer('myLayer').subscribe(() => {
|
||
|
WA.chat.sendChatMessage("Goodbye!", 'Wooka');
|
||
|
});
|