Skip to content

Commit e73f743

Browse files
authored
Merge pull request #362 from De-Panther/logerror_to_logwarning
Editor error messages as warnings
2 parents e35af64 + d818435 commit e73f743

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Packages/webxr/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313
- XR Hand pinch is now detected manually instead of relying on system select event, to support Apple Vision Pro.
1414
- Renamed WebXR HMD to WebXR Tracked Display.
1515
- WebXRCamera to work with TrackedPoseDriver and the Input System.
16+
- Editor error messages as warnings.
1617

1718
### Fixed
1819
- Errors of Module._malloc and Module._free are not functions.

Packages/webxr/Editor/WebXRBuildProcessor.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,13 @@ static void OnPostprocessAllAssets(string[] importedAssets, string[] deletedAsse
9494
}
9595
if (needsURP)
9696
{
97-
Debug.LogError(@"WebXR Export requires Universal Render Pipeline,
97+
Debug.LogWarning(@"WebXR Export requires Universal Render Pipeline,
9898
using Built-in Render Pipeline might cause issues.");
9999
}
100100
#endif
101101
if (PlayerSettings.colorSpace != ColorSpace.Gamma)
102102
{
103-
Debug.LogError(@"WebXR Export requires Gamma Color Space,
103+
Debug.LogWarning(@"WebXR Export requires Gamma Color Space,
104104
using Linear Color Space might cause issues.");
105105
}
106106
}

0 commit comments

Comments
 (0)