Commit 688bf209 authored by Sylvain Renault's avatar Sylvain Renault
Browse files

Merge branch 'develop' into 'main'

Conform to API v1.0.0

See merge request !2
parents 001b24b4 d0d38158
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
fileFormatVersion: 2
guid: be2764d34364d6e4e8b4811c9fe72a5b
guid: 78306bf200d797d43b085b7da02b346e
folderAsset: yes
DefaultImporter:
  externalObjects: {}
+1 −1
Original line number Diff line number Diff line
fileFormatVersion: 2
guid: 5fec767e3d1954e4e8af5dc2b3d4dd5d
guid: 653e904517771514ab9628529a0317d7
folderAsset: yes
DefaultImporter:
  externalObjects: {}
+42 −0
Original line number Diff line number Diff line
//
// ARF - Augmented Reality Framework (ETSI ISG ARF)
//
// Copyright 2022 ETSI
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Last change: June 2022
//

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;

[CustomEditor(typeof(WorldStorageInfo))]
public class WorldStorageInfoEditor : Editor
{
    public override void OnInspectorGUI()
    {
        base.OnInspectorGUI();

        EditorGUILayout.Space();
        WorldStorageInfo srv = (WorldStorageInfo)target;

        string state = srv.GetServerState();
        EditorGUILayout.LabelField("Server State", state);

        string api = srv.GetAPIVersion();
        EditorGUILayout.LabelField("OpenAPI Version", api);
    }
}
+1 −1
Original line number Diff line number Diff line
fileFormatVersion: 2
guid: d6c7598eb0c8e2948826a04685e1e3c3
guid: f32282169eeffb6418d67e0303320c45
MonoImporter:
  externalObjects: {}
  serializedVersion: 2

Assets/Runtime.meta

0 → 100644
+8 −0
Original line number Diff line number Diff line
fileFormatVersion: 2
guid: 9f9d2ca3af2d00643b6a16d11277df9a
folderAsset: yes
DefaultImporter:
  externalObjects: {}
  userData: 
  assetBundleName: 
  assetBundleVariant: 
Loading