Table of Contents

Class Room.Map

VMap 관련 API 입니다.

public static class Room.Map
Inheritance
object
Room.Map

Remarks

Map 프로퍼티는 Room이 처음 생성될 때 초기화됩니다. 즉, 같은 VMap으로 만들어진 Room들은 모두 같은 Map 프로퍼티를 가집니다. Room 내에서 Map 프로퍼티를 변경하면, 다른 Room에는 영향을 주지 않습니다.

Methods

GetMapProp(string)

Map의 Property를 가져옵니다. key가 없다면 null을 반환합니다.

public static string GetMapProp(string propId)

Parameters

propId string

문자열, 프로퍼티 ID

Returns

string

SetMapProp(string, string)

Map의 Property를 설정합니다. key가 없다면 새로 생성합니다.

public static void SetMapProp(string propId, string propVal)

Parameters

propId string

문자열, 프로퍼티 ID

propVal string

string

Remarks

다른 Room에는 영향을 주지 않습니다.