RenaissanceCoders_UnityScripting
RenaissanceCoders_UnityScripting copied to clipboard
error CS0104: 'MinAttribute' is an ambiguous reference between 'UnityEngine.PostProcessing.MinAttribute' and 'UnityEngine.MinAttribute'
Assets\PostProcessing\Editor\PropertyDrawers\MinDrawer.cs(11,13): error CS0104: 'MinAttribute' is an ambiguous reference between 'UnityEngine.PostProcessing.MinAttribute' and 'UnityEngine.MinAttribute'
Just to notice.
Error was on Unity 2018.4.9f1
Assets\PostProcessing\Editor\PropertyDrawers\MinDrawer.cs(11,13): error CS0104: 'MinAttribute' is an ambiguous reference between 'UnityEngine.PostProcessing.MinAttribute' and 'UnityEngine.MinAttribute'
Just to notice.
Adding
using MinAttribute = UnityEngine.PostProcessing.MinAttribute;
To the top of the script fixed it for me on 2018.4.16f.
Assets\PostProcessing\Editor\PropertyDrawers\MinDrawer.cs(11,13): error CS0104: 'MinAttribute' is an ambiguous reference between 'UnityEngine.PostProcessing.MinAttribute' and 'UnityEngine.MinAttribute'
Just to notice.
Adding
using MinAttribute = UnityEngine.PostProcessing.MinAttribute;
To the top of the script fixed it for me on 2018.4.16f.
Thank you! This worked for me