- Home /
GameCenter turnbased match making using player group
This is the constructor method of TurnBasedMatchesController.StartMatch()
public static void StartMatch(
uint minPlayers,
uint maxPlayers,
Player[] playersToInvite = null,
bool showExistingMatches = true
)
and this is the constructor method of RealTimeMatchesController.StartMatch()
public static void StartMatch(
uint minPlayers,
uint maxPlayers,
uint playerGroup = 0,
uint playerAttributes = 0,
Player[] playersToInvite = null
)
which shows that realtime matches support an argument for player group in game center while turnBased matches do not. Can we solve this issue with the existing plugin version?
Answer by Qwexar · Sep 17, 2014 at 12:24 PM
We have solve this issue by downloading your high level uncompiled code files from https://github.com/vitapoly/u3dxt . We simply edited the method to use GKMatchRequest.playerGroup in your method TurnBasedMatchesController.StartMatch().
Your answer
Follow this Question
Related Questions
U3DXT Game Center Interface 0 Answers
Cloud recognition in Vuforia 0 Answers
How to put buttons in a list? 1 Answer
Character flickering when moving 0 Answers
does not implement right interface 1 Answer