14 lines
312 B
C#
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";
|
|
}
|
|
}
|