18 lines
576 B
C#
18 lines
576 B
C#
#nullable enable
|
|
|
|
using UnityEngine;
|
|
|
|
namespace ShrinkApp.Starter.Basic
|
|
{
|
|
[CreateAssetMenu(fileName = "ShrinkAppBasicStarterSettings", menuName = "ShrinkApp/Starter/Basic Settings")]
|
|
public class ShrinkAppBasicStarterSettings : ScriptableObject
|
|
{
|
|
public bool autoBindLoopbackTransport;
|
|
public long defaultLoopbackSessionId = 1;
|
|
public string defaultCommandText = "starter status";
|
|
public bool logCommandOutputToConsole = true;
|
|
public bool autoRunDefaultCommandOnStart;
|
|
public int maxCommandOutputLines = 12;
|
|
}
|
|
}
|