Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 604 Bytes

File metadata and controls

20 lines (13 loc) · 604 Bytes

Datablocks

Unity game data manager for Unity using hierarchical structures. Data Inheritance!.

Documentation

Official Website

Unity Forums

Example Usage

The following code defines a Datablock that can then be used via the built in editor and used for data inheritance.

public class SpellDatablock : Datablock
{
    public int manaCost;
    public string description;
    public float castingTime;
}