We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 708b15f commit a66ef14Copy full SHA for a66ef14
README.md
@@ -3,14 +3,15 @@ Similar like [`SerializeReference`](https://docs.unity3d.com/ScriptReference/Ser
3
```c#
4
public interface IMyInterface<T> {}
5
public class MyIntObject : IMyInterface<int> {}
6
+public class MyGenericObject<T> : IMyInterface<T> {}
7
8
public class MyMonoBehavior : MonoBehaviour
9
{
10
[GenericSerializeReference]
11
public IMyInterface<int> Value { get; set; }
12
}
13
```
-
14
+
15
16
## Requirement
17
Unity3D 2020.2+ (not guaranteed to work below 2020.2)
0 commit comments