Skip to content

Commit

Permalink
fix: Inconsistent var rename
Browse files Browse the repository at this point in the history
  • Loading branch information
atteneder committed Oct 26, 2021
1 parent 48aef3b commit 0b23b3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Runtime/Scripts/Export/GltfWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,7 @@ async Task<bool> BakeImages(string directory) {
return false;
}
#else
if (settings.fileConflictResolution == FileConflictResolution.Abort) {
if (m_Settings.fileConflictResolution == FileConflictResolution.Abort) {
return false;
}
#endif
Expand Down Expand Up @@ -1010,7 +1010,7 @@ int AddMesh([NotNull] UnityEngine.Mesh uMesh) {

#if !UNITY_EDITOR
if (!uMesh.isReadable) {
logger?.Error(LogCode.MeshNotReadable, uMesh.name);
m_Logger?.Error(LogCode.MeshNotReadable, uMesh.name);
return -1;
}
#endif
Expand Down

0 comments on commit 0b23b3a

Please sign in to comment.