Skip to content

Commit

Permalink
UnityGltf import is meant to default to off (#707)
Browse files Browse the repository at this point in the history
  • Loading branch information
andybak authored May 2, 2024
1 parent abe6e55 commit 8d63ab3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Scripts/UserConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ public struct ImportConfig
bool? m_UseUnityGltf;
public bool UseUnityGltf
{
get { return m_UseUnityGltf ?? true; }
get { return m_UseUnityGltf ?? false; }
set { m_UseUnityGltf = value; }
}
}
Expand Down

0 comments on commit 8d63ab3

Please sign in to comment.