I’m using Unity 2019.3.0b4 and downloaded Litho 0.6.0 which says it requires 2019.3+
In a fresh project where I import Litho package I’m hit with this:
Library/PackageCache/com.unity.xr.arsubsystems@3.1.0-preview.1/Runtime/XRSubsytstem.cs(50,40): error CS0115: 'XRSubsystem<TSubsystemDescriptor>.OnDestroy()': no suitable method found to override
Changing line 50 in XRSubsytstem.cs from
protected sealed override void OnDestroy()
to
public sealed override void Destroy()
removes the error, but I’m not sure if it fixes the bug