Set Up Core Loop & Gameplay
Overview
Launching Your Gameplay
// ...
public void OnMatchWillBeginExtraLogic(Match matchInfo) {
//Extra Logic Here
}
// ...// Assuming you have an instance of MiniTonManager and a matchInfo object
// This function should be called when the match is about to begin
function onMatchWillBeginExtraLogic(matchInfo) {
// Extra Logic Here
// Clear any previously stored match settings
// Retrieve the Match object and utilize it to set gameplay parameters
// Load your game scene if you have specified a Game Scene in the MiniTon Manager
}
// Usage example
const MiniTonManager = new MiniTonManager(); // Replace with actual initialization code
const matchInfo = getMatchInfo(); // Replace with code to retrieve match info
onMatchWillBeginExtraLogic(matchInfo);Completing Gameplay
Submit Score
Note on Progression
Return To The MiniTon BOT
Fallback Score Reporting
Please Note:
Incomplete Matches
Aborting
Ending Replay
Last updated