예제 #1
0
파일: Maps.cs 프로젝트: Hertzole/unity-sdk
 public void UpdateMap(LootLockerCreatingMapsRequest updatedMap)
 {
     LootLockerSDKAdminManager.UpdatingMaps(updatedMap, activeMap.map_id, (response) =>
     {
         if (response.success)
         {
             Debug.Log("Successful updated map: " + response.text);
         }
         else
         {
             Debug.LogError("failed to update map: " + response.Error);
         }
     });
 }
예제 #2
0
 public void UpdatingMaps()
 {
     LootLockerSDKAdminManager.UpdatingMaps(updatedMap, mapID, (response) =>
     {
         if (response.success)
         {
             Debug.LogError("Successful updated map: " + response.text);
         }
         else
         {
             Debug.LogError("failed to update map: " + response.Error);
         }
     });
 }