UnityEngine.ExposedReference<T> serialization not displayed correctly

Issue #385 resolved
Yamakawa Taichi created an issue

After I started using 2018.2.1f1 with odin 2.0.0.0, I am facing the following issue (I am working on 2017.3.0f3 before). I can see a serialized ExposedReference<T> correctly without odin, but I am seeing the curious visualization in inspector with odin (please see screen short).

This problem is similar to https://bitbucket.org/sirenix/odin-inspector/issues/365, and I resolved it in a same way.

using UnityEngine;
using Sirenix.OdinInspector.Editor.Drawers;

public class ExposedReferenceCustomDrawer<T> : DrawWithUnityBaseDrawer<ExposedReference<T>>
        where T : Object
    {
    }

2018-08-10.PNG

Comments (3)

  1. Log in to comment