Files
2025-11-30 08:35:03 +02:00

14 lines
312 B
C#

// SPDX-FileCopyrightText: 2025 Unity Technologies and the glTFast authors
// SPDX-License-Identifier: Apache-2.0
using UnityEngine;
namespace GLTFast.Editor
{
static class Constants
{
public const string gltfExtension = "gltf";
public const string gltfBinaryExtension = "glb";
}
}