I have followed the instructions for creating a simple <String, String> SerializableDictionary - but no matter what I do, clicking on the "+" icon in the inspector to add a new key or value does absolutely nothing. this is my class:
[Serializable]
public class ssDict : SerializableDictionary<string, string> { }
and this is how i use it:
public class Character : MonoBehaviour
{
public ssDict NameStringDictionary = new ssDict();
..
I have followed the instructions for creating a simple <String, String> SerializableDictionary - but no matter what I do, clicking on the "+" icon in the inspector to add a new key or value does absolutely nothing. this is my class:
and this is how i use it: