Database System in Unity using Resources and ScriptableObjects

Introduction

Oftentimes, we ask ourselves the question, how do we want to store data in Unity?

There is a high probability that you wanted to create a database and make it editable with ease for either a developer or a designer. There are a lot of ways of dealing with this problem, but the way we want to tackle this today is the most friendly from a Unity design perspective.

This is also an automated way for developers to work with designers, thanks to the runtime data reading process along with looping through a resources folder. The best part of this solution is – it does not require additional plugins.

The other important aspect of this solution is the way in which we interact with the data later on. All items are stored in the collection and are easily accessible through a user-defined key.

 

Solution usage

This solution can be used for many different cases. I personally have been using it in systems like holding items or skills data for my RPG game.

This is a great way to hold data as it’s simple and robust, especially with multiplayer games. The data objects are indexed and can be easily exported to json from scriptable objects.

Warning: When serializing to json, take care over what fields you put in the data scriptable object class. Not every field can be serialized (ex. Sprite, GameObject, Transform).

 

Implementation

Project Scripts

[Image 1. Scripts Structure]
[Image 1. Scripts Structure]
There are 4 main scripts in the project we are going to use, and they are explained in the further sections.

ScriptableObjects

ScriptableObjects System allows you to store data in Unity Engine as an asset in the folder.

This asset can be read and modified in the game from the code level, although it’s not recommended to modify the ScriptableObject on the runtime from the code level. Its purpose is to store the data, not to hold temporary variables.

The big advantage is it can be assigned in the editor in an exposed variable.

Warning: In the editor, changing the ScriptableObject fields from the code level on runtime can cause weird behaviour in the Editor. It’s data is going to remain the same after we stop the game, but if we don’t set it as Dirty in the editor, it will go back to its original state at some point.

Creating Object Data (Scriptable Object)

[Image 2. Data Object Code Structure]
[Image 2. Data Object Code Structure]
Scriptable Objects can be added through classes, which derives from ScriptableObject class and is marked with the [CreateAssetMenu(menuName=path)] attribute. Based on the menuName parameter in the attribute, we will be able to create the item ScriptableObject in the Create section. After we add this script, and after Unity recompiles the scripts, the option to add a data object will appear after right clicking on the selected folder in the project window.

[Image 3. Creation of Data Object]
[Image 3. Creation of Data Object]
Now simply fill out the variables for the item data object and the item is ready to use!

[Image 4. Creation of Data Object]
[Image 4. Creation of Data Object]

Reading the Data from Resources and initializing the database Resources folder in this solution acts as a database container.

[Image 5. Resources Database Folder]
[Image 5. Resources Database Folder]

Now, if we have created the data container, we need to create a script which will contain a collection of each individual data object. Every ScriptableObject under the Items folder, will be loaded on the initialization.

[Image 6. Initialization Code Snippet]
[Image 6. Initialization Code Snippet]

This manager derives from the DataManager with two generic arguments for the index and data type. It contains methods to put and remove the items with additional logical checks. 

In order to read the items from a Resources folder, we will use the Resources.LoadAll<T>(string); method.

 

This will return an array of items and, later on, we can assign it into the indexed dictionary collection. 

 

Using the database in a test inventory context

 

Now we just need to create the two empty GameObjects and assign ItemDataManager.cs and InventoryTestContext.cs components.

[Image 7. Items Data Manager Component]
[Image 7. Items Data Manager Component]

The InventoryTestContext component needs to reference the ItemDataManager in order to initialize and obtain data from it.

[Image 8. Inventory Test Context Component]
[Image 8. Inventory Test Context Component]

Once the initialization is done, it can be used to get the data objects. This is done by the InventoryTestContext script.

[Image 9. Scripts Structure]
[Image 9. Scripts Structure]

After we start the Game, this script will print all of the items from the referenced itemsDataManager.

[Image 10. Result logs]
[Image 10. Result logs]

Summary

As you can see, with a little effort at the beginning of the development, we can create expandable and structured databases for later usage without any issues.

Data Objects from Resources are loaded dynamically from the folder which is pointed in the script variable and are initialized whenever the developer calls it from any context.

This solution can be applied to any type of data and will make your life easier!

Make sure to check out the unity package file provided below. It will show

you the entire solution and structure which we consider proper for the Unity projects.

Let us know how you like the solution below!

Click to download Unity package!

related
GuideIntermediateTutorial
High Definition Render Pipeline: Lit shader in action Part 2
How to achieve realistic results? In a previous post, I was explaining what Lit shader is...
0
IntermediateMultiplayerTutorial
Building a Turn-Based Multiplayer Game with GameSparks and Unity: Part 3
Welcome to the third part of our GameSparks tutorial series. In parts one and two we have finished...
0
BasicsGuideTutorial
Improved Prefab Workflow
Introduction At the end of October on the Unity Developer conference Unite LA, Unity team...
0
Call The Knights!
We are here for you.
Please contact us with regards to a Unity project below.



The Knights appreciate your decision!
Expect the first news soon!
hire us!