Hi, in my project I'm using URP and HDRP, and theres an issue with Unity.Entities.Conversion.CompanionComponentSupportedTypes.
Error:
Library\PackageCache\com.unity.entities@1.0.0-pre.47\Unity.Entities.Hybrid.HybridComponents\CompanionComponentSupportedTypes.cs(41,20): error CS0104: 'DecalProjector' is an ambiguous reference between 'UnityEngine.Rendering.HighDefinition.DecalProjector' and 'UnityEngine.Rendering.Universal.DecalProjector'
I manage to resolve, adding a using on top of the CompanionComponentSupportedTypes:
#if HDRP_7_0_0_OR_NEWER
using DecalProjector = UnityEngine.Rendering.HighDefinition.DecalProjector;
using UnityEngine.Rendering.HighDefinition;
#endif
Any intentions to fix this problem soon?
Because any update of Entities, I need to delete entities in Packages folder, reimport on PackageManager, and move the new entities to Packages folder again.