Initialization

How to initialize Quest Tree.

The first step of using Quest Tree at runtime is by initializing it. Initialization will start the database connection and prepare the database. Initialization should happen right before any database functionality is required. This is usually when the game begins or when a save is loaded.

You can initialize QT with a single line of code:

QT.Initialize();

Last updated