Presenting Triumph
Summon Triumph at the tap of a button. Estimated Time: 5 minutes.
using TriumphSDK;
// Action of the tournaments button
tournamentsButton.onClick.AddListener(() => {
// Summons the triumph UI when your tournaments button is tapped
Triumph.Present();
});import TriumphSDK
// Action of the tournaments button
@objc func onTournamentsButtonPressed() {
// Summons the triumph UI when your tournaments button is tapped
Triumph.present()
}Last updated