示例#1
0
        public void UpdatingEvent()
        {
            LootLockerSDKAdminManager.UpdatingEvent(eventID, UpdatedEventData.GetUpdatingEventRequestDictionary(protectName, sendAssetID_U, sendPosterPath_U, sendRounds_U, sendRoundLength_U, sendCompletionBonus_U,
                                                                                                                sendDifficultyName_U, sendDifficultyMultiplier_U, sendTimeScoreMultiplier_U, sendGoals_U,
                                                                                                                sendCheckpoints_U, sendFilters_U),

                                                    (response) =>
            {
                if (response.success)
                {
                    Debug.LogError("Successful updated event: " + response.text);
                }
                else
                {
                    Debug.LogError("failed to update event: " + response.Error);
                }
            });
        }