struct RoomParams (Niantic.Experimental.ARDK.SharedAR.RoomParams)

注釈

This is an experimental feature. Experimental features should not be used in production products as they are subject to breaking changes, not officially supported, and may be deprecated without notice

struct RoomParams {
    // properties

    int Capacity;
    string Description;
    string ExperienceId;
    string Name;
    string Passcode;
    string RoomID;
    RoomVisibility Visibility;

    // methods

    RoomParams(
        int capacity,
        string name = "",
        string experienceId = "",
        string description = "",
        string passcode = "",
        RoomVisibility visibility = RoomVisibility.Public
    );
};