Description
룸 관련 Static Class
Static Properties
Name | Type | Description |
Map | Static Class | 방의 맵 관련 API 입니다. |
Player | Static Class | 방 관련 플레이어 API 입니다. |
VoiceChat | Static Class | 방의 VoiceChat API 입니다. |
Static Methods
Name | Parameter | Return | Description |
CurrentRoomPlayers | Dictionary<string, UserData> | 현재 룸의 플레이어들의 정보를 가져옵니다. | |
GetRoomProp | (string propId) | string | Room의 Property를 가져옵니다.
key가 없다면 null을 반환합니다.
다른 맵에서도 해당 키를 가져올 수 있습니다. |
SetRoomProp | (string propId, string propVal) | void | Room의 Property를 설정합니다.
key가 없다면 새로 생성합니다.
모든 맵에서 해당 키를 수정할 수 있습니다. |
Map
Description
방의 맵 관련 API 입니다.
Static Properties
Name | Type | Description |
Setting | Static Class | 방의 Setting API 입니다. |
Static Methods
Name | Parameter | Return | Description |
GetMapProp | (string propId) | string | Map의 Property를 가져옵니다.
key가 없다면 null을 반환합니다.
다른 맵에서는 해당 키를 가져올 수 없습니다. |
SetMapProp | (string propId, string propVal) | void | Map의 Property를 설정합니다.
key가 없다면 새로 생성합니다. |
Player
Description
방 관련 플레이어 API 입니다.
Static Methods
Name | Parameter | Return | Description |
KickPlayer | (string playerId) | void | 플레이어를 강제 퇴장 시킵니다. |
VoiceChat
Description
방의 Voice Chat API 입니다.
Static Methods
Name | Parameter | Return | Description |
Mute | (bool isMute) | void | 음성채팅의 음소거를 설정합니다. |
MutePlayer | (string userID, bool isMute) | void | 상대방의 음성을 끕니다. |
SetPlayerVolume | (string userId, float volume) | void | 특정 유저의 볼륨을 설정합니다. |
SetMasterVoiceAudioVolume | (float volume) | void | 전체 볼륨을 설정합니다. |
SetMicVolume | (float volume) | void | 사용자의 마이크 볼륨을 설정합니다. |