BadScript 2
Loading...
Searching...
No Matches
BadScriptDebuggerSettings.cs
Go to the documentation of this file.
1using System;
2using System.IO;
3
5
7
11public class BadScriptDebuggerSettings : BadSettingsProvider<BadScriptDebuggerSettings>
12{
18 "Path",
19 Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "data", "subsystems", "run", "Debugger.bs")
20 );
21
25 public BadScriptDebuggerSettings() : base("Runtime.Debugger") { }
26
30 public string DebuggerPath
31 {
32 get => m_DebuggerPath.GetValue()!;
33 set => m_DebuggerPath.Set(value);
34 }
35}
The Debugger Settings that are used by the Scriptable Debugger.
BadScriptDebuggerSettings()
Constructs a new BadScriptDebuggerSettings instance.
readonly BadEditableSetting< BadScriptDebuggerSettings, string > m_DebuggerPath
The File Path to the Debugger.
Implements an Editable Setting.
Helper class that can be used to automatically load a settings object from a file.
Contains the scriptable debugger implementation for the BadScript2 Runtime.
Contains the Settings Implementation.