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.Combine(AppDomain.CurrentDomain.BaseDirectory,
19 "data",
20 "subsystems",
21 "run",
22 "Debugger.bs"
23 )
24 );
25
29 public BadScriptDebuggerSettings() : base("Runtime.Debugger") { }
30
34 public string DebuggerPath
35 {
36 get => m_DebuggerPath.GetValue()!;
37 set => m_DebuggerPath.Set(value);
38 }
39}
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.