Hive MatchMaking connects players for online matches and provides relevant data. More...
Classes | |
class | hive.MatchMaking |
Hive MatchMaking connects players for online matches and provides relevant data. More... | |
class | hive.MatchMaking.MatchMakingData |
Match information returned by the Hive match making server. More... | |
class | hive.MatchMaking.MatchMakingGroupData |
Group Match information returned by the Hive match making server. More... | |
Functions | |
delegate void | hive.MatchMaking.onMatchMakingData (ResultAPI result, MatchMakingData matchMakingData) |
MatchMaking data result callback More... | |
delegate void | hive.MatchMaking.onMatchMakingResult (ResultAPI result) |
MatchMaking result callback More... | |
delegate void | hive.MatchMaking.onMatchMakingGroupData (ResultAPI result, MatchMakingGroupData matchMakingGroupData) |
MatchMaking group match data result callback More... | |
static void | hive.MatchMaking.requestMatchMaking (int matchId, int point, string extraData, onMatchMakingData listener) |
Matching Request More... | |
static void | hive.MatchMaking.getRequestingStatus (int matchId, onMatchMakingData listener) |
Check Matching Status More... | |
static void | hive.MatchMaking.deleteRequesting (int matchId, onMatchMakingResult listener) |
Delete Matching Request More... | |
static void | hive.MatchMaking.createGroup (int matchId, int point, string extraData, onMatchMakingGroupData listener) |
Create group More... | |
static void | hive.MatchMaking.joinGroup (int matchId, string groupCode, int point, string extraData, onMatchMakingGroupData listener) |
Join group More... | |
static void | hive.MatchMaking.leaveGroup (int matchId, onMatchMakingResult listener) |
Leave group More... | |
static void | hive.MatchMaking.kickGroupUser (int matchId, long targetPlayerId, onMatchMakingGroupData listener) |
Kick user from a group More... | |
static void | hive.MatchMaking.getGroupInfoByUser (int matchId, onMatchMakingGroupData listener) |
Search for group information based on users within the group. More... | |
static void | hive.MatchMaking.getGroupInfoByGroupCode (string groupCode, onMatchMakingGroupData listener) |
Search for group information based on group code. More... | |
static void | hive.MatchMaking.updateGroupUser (int matchId, bool ready, int point, string extraData, onMatchMakingGroupData listener) |
Update group user information. More... | |
static void | hive.MatchMaking.requestGroupMatching (int matchId, onMatchMakingGroupData listener) |
Group Matching Request More... | |
static void | hive.MatchMaking.deleteGroupMatching (int matchId, onMatchMakingGroupData listener) |
Delete Group Matching Request More... | |
Hive MatchMaking connects players for online matches and provides relevant data.
Hive MatchMaking feature makes it simple to get matches for your players without having to implement specific matchmaking logic in your game.
|
static |
Create group
You can enter the score(point) to be used when requesting matching.
You can also enter additional information(nickname, level, country, etc.)(extraData) to be used for matching.
ExtraData is delivered as part of the matching results.
|
static |
Delete Group Matching Request
|
static |
Delete Matching Request
Deletes the requested match.
|
static |
Search for group information based on group code.
|
static |
Search for group information based on users within the group.
|
static |
Check Matching Status
You can check the status of your requested matching.
|
static |
Join group
You can enter the score(point) to be used when requesting matching.
You can also enter additional information(nickname, level, country, etc.)(extraData) to be used for matching.
ExtraData is delivered as part of the matching results.
|
static |
Kick user from a group
|
static |
Leave group
delegate void hive.MatchMaking.onMatchMakingData | ( | ResultAPI | result, |
MatchMakingData | matchMakingData | ||
) |
MatchMaking data result callback
result | Result of API call |
matchMakingData | Requested match status and match information |
delegate void hive.MatchMaking.onMatchMakingGroupData | ( | ResultAPI | result, |
MatchMakingGroupData | matchMakingGroupData | ||
) |
MatchMaking group match data result callback
result | Result of API call |
matchMakingData | Requested group match status and group match information |
delegate void hive.MatchMaking.onMatchMakingResult | ( | ResultAPI | result | ) |
MatchMaking result callback
result | Result of API call |
|
static |
Group Matching Request
|
static |
Matching Request
You can enter the score(point) to be used when requesting matching.
You can also enter additional information(nickname, level, country, etc.)(extraData) to be used for matching.
ExtraData is delivered as part of the matching results.
|
static |
Update group user information.