Skip to content

Commit

Permalink
chore: Making package identifier compatible with original OpenUPM rel…
Browse files Browse the repository at this point in the history
…eases.

KtxUnity soft dependency has been changed back to OpenUPM version (for now)
  • Loading branch information
atteneder committed Oct 18, 2023
1 parent 4ad898f commit 90783f7
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Editor/UI/GltfImporter.uxml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements">
<ui:VisualElement name="Header" class="header section" style="align-items: center;">
<Style src="GltfImporter-style.uss" />
<ui:VisualElement name="gltf-logo" style="background-image: url(&apos;/Packages/com.unity.cloud.gltfast/Editor/UI/gltf-logo.png&apos;); width: 48px; height: 24px; -unity-background-image-tint-color: rgba(210, 210, 210, 255);" />
<ui:VisualElement name="gltf-logo" style="background-image: url(&apos;/Packages/com.atteneder.gltfast/Editor/UI/gltf-logo.png&apos;); width: 48px; height: 24px; -unity-background-image-tint-color: rgba(210, 210, 210, 255);" />
<ui:Label text="Settings" name="Headline" class="h1" style="margin: 0;"/>
</ui:VisualElement>
<ui:VisualElement name="ImportSettings" class="section">
Expand Down
4 changes: 2 additions & 2 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Unity Cloud glTFast copyright © 2023 Unity Technologies and the glTFast authors
glTFast copyright © 2023 Unity Technologies and the glTFast authors

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
Expand Down
2 changes: 1 addition & 1 deletion Runtime/Scripts/GltfGlobals.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public static class GltfGlobals
/// <summary>
/// glTF package name
/// </summary>
public const string GltfPackageName = "com.unity.cloud.gltfast";
public const string GltfPackageName = "com.atteneder.gltfast";

/// <summary>
/// First four bytes of a glTF-Binary file are made up of this signature
Expand Down
6 changes: 3 additions & 3 deletions Runtime/Scripts/glTFast.asmdef
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@
"define": "DRACO_UNITY"
},
{
"name": "com.unity.cloud.ktx",
"name": "com.atteneder.ktx",
"expression": "",
"define": "KTX_UNITY"
},
{
"name": "com.unity.cloud.ktx",
"name": "com.atteneder.ktx",
"expression": "1.3.0",
"define": "KTX_UNITY_1_3_OR_NEWER"
},
{
"name": "com.unity.cloud.ktx",
"name": "com.atteneder.ktx",
"expression": "2.2.1",
"define": "KTX_UNITY_2_2_OR_NEWER"
},
Expand Down
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.unity.cloud.gltfast",
"name": "com.atteneder.gltfast",
"version": "5.1.0",
"displayName": "Unity Cloud glTFast",
"displayName": "glTFast",
"description": "Use glTFast to import and export glTF 3D files efficiently at runtime or in the Editor",
"unity": "2019.4",
"keywords": [
Expand All @@ -15,6 +15,11 @@
"universal",
"basisu"
],
"author": {
"name": "Andreas Atteneder",
"email": "[email protected]",
"url": "https://pixel.engineer"
},
"dependencies": {
"com.unity.modules.jsonserialize": "1.0.0",
"com.unity.modules.unitywebrequest": "1.0.0",
Expand Down

0 comments on commit 90783f7

Please sign in to comment.