Skip to content

Commit

Permalink
fix: GLTF-Utility dependency for playground sample is changed to gtlF…
Browse files Browse the repository at this point in the history
…ast.
  • Loading branch information
saszer committed Jul 17, 2022
1 parent a776663 commit 26f4729
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Editor/InstallPortDependencies.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ void OnGUI()
GUILayout.Label("");

GUILayout.BeginHorizontal("box");
GUILayout.Label("prefrontalcortex/org.khronos.unitygltf | Used by NFTPort Playground Sample");
GUILayout.Label("gltFast| Used by NFTPort Playground Sample");
if (GLTFInstalled)
{
GUI.contentColor = Color.green;
Expand Down Expand Up @@ -326,7 +326,7 @@ static void EndListCheckGLTF()
public static void AddGLTF()
{
// Add a package to the project
Request = Client.Add("https://github.com/prefrontalcortex/UnityGLTF.git?path=/UnityGLTF/Assets/UnityGLTF");
Request = Client.Add("https://github.com/atteneder/glTFast.git");
EditorApplication.update += AddProgressGLTF;
}

Expand All @@ -350,7 +350,7 @@ static void AddProgressGLTF()
//////////// RM
public static void RemoveGLTF()
{
RmRequest = Client.Remove("org.khronos.unitygltf");
RmRequest = Client.Remove("com.atteneder.gltfast");
EditorApplication.update += RemoveProgressGLTF;
}

Expand All @@ -360,7 +360,7 @@ static void RemoveProgressGLTF()
{
if (RmRequest.Status == StatusCode.Success)
{
Debug.Log("removed: " + "org.khronos.unitygltf");
Debug.Log("removed: " + "com.atteneder.gltfast");
CheckPkgsListForGLTFt();
}
else if (RmRequest.Status >= StatusCode.Failure)
Expand Down

0 comments on commit 26f4729

Please sign in to comment.