Skip to content

Serialized Dictionary

Paulo edited this page Aug 2, 2021 · 2 revisions

Description

The Serialized Dictionary is an extremely handy class that functions exactly like a normal dictionary, but is serializable by the editor. Its only drawback is that it occupies slightly more memory than a true dictionary, as it internally uses a list to serialize the dictionary's contents.

Usage

[SerializeField]
private SerializedDictionary dictionary;

Showcase

Showcase GIF

Clone this wiki locally