Merge pull request #569 from HeadClot/master-1

Update AvatarExporter.cs with updated year with Copyright info for 2023.
This commit is contained in:
ksuprynowicz 2023-08-18 12:58:41 +02:00 committed by GitHub
commit d42b7fdbf4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@
// //
// Created by David Back on 28 Nov 2018 // Created by David Back on 28 Nov 2018
// Copyright 2018 High Fidelity, Inc. // Copyright 2018 High Fidelity, Inc.
// Copyright 2022 Overte e.V. // Copyright 2022 to 2023 Overte e.V.
// //
// Distributed under the Apache License, Version 2.0. // Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
@ -359,7 +359,7 @@ class AvatarExporter : MonoBehaviour
[MenuItem("Overte/About")] [MenuItem("Overte/About")]
static void About() static void About()
{ {
EditorUtility.DisplayDialog("About", "Avatar Exporter\nVersion " + AVATAR_EXPORTER_VERSION + "\nCopyright 2022 Overte e.V.\nCopyright 2018 High Fidelity, Inc.", "Ok"); EditorUtility.DisplayDialog("About", "Avatar Exporter\nVersion " + AVATAR_EXPORTER_VERSION + "\nCopyright 2022 to 2023 Overte e.V.\nCopyright 2018 High Fidelity, Inc.", "Ok");
} }
static void ExportSelectedAvatar(bool updateExistingAvatar) static void ExportSelectedAvatar(bool updateExistingAvatar)
@ -1924,4 +1924,4 @@ public static class ConverterExtensions
public static string F(this double x) => x.ToString("G", CultureInfo.InvariantCulture); public static string F(this double x) => x.ToString("G", CultureInfo.InvariantCulture);
} }
#endif #endif