From 1a480b4083974984b5f0d52c2c203d084e4ad922 Mon Sep 17 00:00:00 2001 From: Sylvain Renault Date: Thu, 17 Feb 2022 19:29:07 +0100 Subject: [PATCH] Use new REST namespace --- .../ARF World Storage API/Editor/WorldAnchorWindow.cs | 2 +- .../ARF World Storage API/Editor/WorldStorageWindow.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Assets/ETSI.ARF/ARF World Storage API/Editor/WorldAnchorWindow.cs b/Assets/ETSI.ARF/ARF World Storage API/Editor/WorldAnchorWindow.cs index b0d4f44..a77ad6c 100644 --- a/Assets/ETSI.ARF/ARF World Storage API/Editor/WorldAnchorWindow.cs +++ b/Assets/ETSI.ARF/ARF World Storage API/Editor/WorldAnchorWindow.cs @@ -114,7 +114,7 @@ namespace ETSI.ARF.WorldStorage.UI if (GUILayout.Button("Create/Update World Anchor")) { Debug.Log("PostAddWorldAnchor"); - RESTfulTrackableRequest.PostAddWorldAnchor(worldStorageSettings); + RESTfulWorldAnchorRequest.PostAddWorldAnchor(worldStorageSettings); } GUI.backgroundColor = ori; } diff --git a/Assets/ETSI.ARF/ARF World Storage API/Editor/WorldStorageWindow.cs b/Assets/ETSI.ARF/ARF World Storage API/Editor/WorldStorageWindow.cs index 7658ceb..9424cfa 100644 --- a/Assets/ETSI.ARF/ARF World Storage API/Editor/WorldStorageWindow.cs +++ b/Assets/ETSI.ARF/ARF World Storage API/Editor/WorldStorageWindow.cs @@ -138,7 +138,7 @@ namespace ETSI.ARF.WorldStorage.UI EditorGUILayout.Space(); if (GUILayout.Button("Ping")) { - vers = RESTfulTrackableRequest.Ping(worldStorageSettings); + vers = RESTfulAdminRequest.Ping(worldStorageSettings); } // Version @@ -147,7 +147,7 @@ namespace ETSI.ARF.WorldStorage.UI if (GUILayout.Button("Get World Storage API Version")) { - vers = RESTfulTrackableRequest.GetAdminInfo(worldStorageSettings); + vers = RESTfulAdminRequest.GetAdminInfo(worldStorageSettings); } GUI.backgroundColor = ori; GUILayout.EndHorizontal(); -- GitLab