Skip to content

Starting Debby

You can start Debby either automatically when your project loads, or manually.

Auto-Start

  1. Enable Auto Load in DebbySettings (enabled by default)
  2. Debby will initialize automatically when your application starts
  3. Use the toggle button (or gesture) to open the interface

Manual Start

If you prefer manual control:

  1. Disable Auto Load in DebbySettings
  2. Call Debby.Initialize() from your code when ready:
csharp
using Debology.Debby;

public class GameManager : MonoBehaviour
{
    private void Start()
    {
        // Initialize Debby manually
        Debby.Initialize();
    }
}

You can also configure settings programmatically:

csharp
Debby.Initialize(settings =>
{
    settings.Layout = DebbySettings.LayoutMode.Landscape;
    settings.BackgroundOpacity = 0.95f;
});