Table of Contents

Class

ScriptableSingleton for managing Core Framework project-specific settings.

[FilePath("ProjectSettings/CoreFrameworkProjectSettings.asset", FilePathAttribute.Location.ProjectFolder)]
public class CoreFrameworkProjectSettings : ScriptableSingleton<CoreFrameworkProjectSettings>
Inheritance
object
Extension Methods

Fields

_bootScene

The name of the bootstrapper scene that initializes the application.

[SerializeField]
private string _bootScene

Field Value

string

_startScene

The name of the initial scene to start the application.

[SerializeField]
private string _startScene

Field Value

string

Properties

BootScene

Gets or sets the name of the bootstrapper scene that initializes the application.

public string BootScene { get; set; }

Property Value

string

StartScene

Gets or sets the name of the initial scene to start the application.

public string StartScene { get; set; }

Property Value

string