Photon Plugins API Documentation v5.0RC1

Properties | List of all members
Photon.Hive.Plugin.ICreateGameCallInfo Interface Reference

Base interface of argument passed to OnCreateGame callback. More...

Inheritance diagram for Photon.Hive.Plugin.ICreateGameCallInfo:
Photon.Hive.Plugin.ITypedCallInfo< IJoinGameRequest >

Properties

bool IsJoin [get]
 Indicates if the operation triggering this call is Op Join with JoinMode.CreateIfNotExists or JoinMode.JoinOrRejoin or JoinMode.RejoinOnly. More...
 
bool CreateIfNotExists [get]
 Indicates whether to create room if it could not be loaded from external source and joined. If true, this call is triggered by Op Join with JoinMode.CreateIfNotExists. More...
 
Dictionary< string, object > CreateOptions [get]
 Room creation options. More...
 
- Properties inherited from Photon.Hive.Plugin.ITypedCallInfo< IJoinGameRequest >
RequestType Request [get]
 
string UserId [get]
 User ID of the actor triggering the call. More...
 
string Nickname [get]
 NickName of the actor triggering the call. More...
 
object AuthResultsToken [get]
 
Dictionary< string, object > AuthCookie [get]
 AuthCookie of the actor triggering the call. More...
 

Detailed Description

Base interface of argument passed to OnCreateGame callback.

Property Documentation

◆ CreateIfNotExists

bool Photon.Hive.Plugin.ICreateGameCallInfo.CreateIfNotExists
get

Indicates whether to create room if it could not be loaded from external source and joined. If true, this call is triggered by Op Join with JoinMode.CreateIfNotExists.

◆ CreateOptions

Dictionary<string, object> Photon.Hive.Plugin.ICreateGameCallInfo.CreateOptions
get

Room creation options.

◆ IsJoin

bool Photon.Hive.Plugin.ICreateGameCallInfo.IsJoin
get

Indicates if the operation triggering this call is Op Join with JoinMode.CreateIfNotExists or JoinMode.JoinOrRejoin or JoinMode.RejoinOnly.