References In Serializable classes fields pointing to asset instead of instance, again

Issue #37 resolved
Björn von der Osten created an issue

Comments (6)

  1. Devon Klompmaker

    Björn,

    I cannot replicate this issue locally. I will send you the updated beta version and if you could also send me a project that replicates the issue that would be great.

    Thanks,

  2. Björn von der Osten reporter

    I'm sorry, I did not realize I had another setup:

    public class test : MonoBehaviour
    {
    
        [SerializeField] private TestSerializable TestSerialize;
    
        [Serializable]
        public class TestSerializable
        {
            public GameObject GameObject;
        }
    }
    

    So Instead of a single reference to the Serializable class it does not work when there is an array of Serializable classes.

  3. Log in to comment