From 77eeb1ce81512ccf12829a1799f8120e59493959 Mon Sep 17 00:00:00 2001 From: Erb3 <49862976+Erb3@users.noreply.github.com> Date: Mon, 12 Sep 2022 20:47:37 +0200 Subject: [PATCH] Docs: basalt.debug --- docs/objects/Basalt/debug.md | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/docs/objects/Basalt/debug.md b/docs/objects/Basalt/debug.md index 948e1e0..b824186 100644 --- a/docs/objects/Basalt/debug.md +++ b/docs/objects/Basalt/debug.md @@ -1,22 +1,28 @@ -## basalt.debug + +# basalt.debug + Creates a label with some information on the main frame on the bottom left. When you click on that label it will open a log view for you. See it as the new print for debugging -You can also edit the default debug Label (change position, change color or whatever you want) by accessing the variable basalt.debugLabel +You can also edit the default debug Label (change position, change color or whatever you want) by accessing the variable `basalt.debugLabel` which returns the debug Label. -Also basalt.debugFrame and basalt.debugList are available. +`basalt.debugFrame` and `basalt.debugList` are also available. + +## Parameters -#### Parameters: 1. `...` (multiple parameters are possible, like print does) -#### Usage: +## Usage + * Prints "Hello! ^-^" to the debug console + ```lua basalt.debug("Hello! ", "^-^") ``` * Changes the debug label's anchor + ```lua basalt.debugLabel:setAnchor("topLeft") -- default anchor is bottomLeft basalt.debug("Hello!") -``` \ No newline at end of file +```