ScriptableObjectVariant icon indicating copy to clipboard operation
ScriptableObjectVariant copied to clipboard

Collections flag not work

Open mitay-walle opened this issue 3 years ago • 1 comments

I've List of references to another ScriptableObjects, and IsOverriden is true, but if I turn it off, I can't turn it on back

mitay-walle avatar Feb 17 '22 19:02 mitay-walle

Thanks for the bug report. Could you write a minimal working example of what is not working? This code works as expected for me:

[SOVariant, CreateAssetMenu]
public class TestSO : ScriptableObject
{
    public List<TestSONonVariant> myList;
}
[CreateAssetMenu]
public class TestSONonVariant : ScriptableObject
{
    [SerializeField] private float data;
}

GieziJo avatar Feb 18 '22 02:02 GieziJo