Starting Debby
You can start Debby either automatically when your project loads, or manually.
Auto-Start
- Enable Auto Load in
DebbySettings(enabled by default) - Debby will initialize automatically when your application starts
- Use the toggle button (or gesture) to open the interface
Manual Start
If you prefer manual control:
- Disable Auto Load in
DebbySettings - 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;
});