diff --git a/CHANGELOG.md b/CHANGELOG.md index 55ab7790..f71decb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] - +## [6.8.0] - 2024-09-05 ### Added - (Import) Setting to create textures readable. This allows users to access resulting textures from their scripts. diff --git a/Runtime/Scripts/Export/Constants.cs b/Runtime/Scripts/Export/Constants.cs index 45c766d5..9650ea3a 100644 --- a/Runtime/Scripts/Export/Constants.cs +++ b/Runtime/Scripts/Export/Constants.cs @@ -7,7 +7,7 @@ namespace GLTFast.Export { static class Constants { - public const string version = "6.7.1"; + public const string version = "6.8.0"; internal const string mimeTypePNG = "image/png"; internal const string mimeTypeJPG = "image/jpeg"; diff --git a/Tests/Runtime/Scripts/Export/ExportNonReadableTests.cs b/Tests/Runtime/Scripts/Export/ExportNonReadableTests.cs index babacecc..68e398a0 100644 --- a/Tests/Runtime/Scripts/Export/ExportNonReadableTests.cs +++ b/Tests/Runtime/Scripts/Export/ExportNonReadableTests.cs @@ -12,6 +12,7 @@ using Unity.glTF.Validator; #endif // GLTF_VALIDATOR using UnityEngine; +using UnityEngine.Rendering; using UnityEngine.TestTools; namespace GLTFast.Tests.Export @@ -129,6 +130,12 @@ public void OneTimeSetup() void Certify() { + if (SystemInfo.graphicsDeviceType == GraphicsDeviceType.OpenGLCore + || SystemInfo.graphicsDeviceType == GraphicsDeviceType.OpenGLES2 + || SystemInfo.graphicsDeviceType == GraphicsDeviceType.OpenGLES3) + { + Assert.Ignore("Exporting non-readable meshes is unreliable on OpenGL/OpenGLES."); + } #if !(UNITY_6000_0_OR_NEWER || (UNITY_EDITOR && UNITY_2022_3_OR_NEWER)) Assert.Ignore("Exporting non-readable meshes is unreliable on Unity versions before 6."); #endif diff --git a/package.json b/package.json index 38590648..a0843169 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "com.unity.cloud.gltfast", - "version": "6.7.1", + "version": "6.8.0", "displayName": "Unity glTFast", "description": "Use glTFast to import and export glTF 3D files efficiently at runtime or in the Editor", "unity": "2020.3",