Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/en/manuals/debugging-game-logic.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@ Evaluating Lua expressions

It is currently not possible to modify variables through the evaluator.

Inspecting variables by hovering
: With the game stopped at a breakpoint, hover the mouse over a variable in the code editor to see its current value. Simple values show directly in the tooltip. Tables open as an expandable tree that you can navigate, and each row has a copy button that copies the value to the clipboard. Hovering a dotted expression such as `self.position.y` shows the value of the full expression.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Gate this documentation until the hover feature ships

Because this docs repo rebuilds the public Defold site on push, this paragraph would advertise a debugger hover feature to all readers even though the referenced implementation PR (defold/defold#12920) is still open against defold:dev as of August 9, 2026. Until that editor change is merged and available in a release/beta channel, users following the manual with the current editor will not get variable-value tooltips, so this should either wait or clearly state the required editor version/channel.

Useful? React with 👍 / 👎.


Detaching the debugger
: Select <kbd>Debug ▸ Detach Debugger</kbd> to detach the debugger from the game. It will continue running immediately.

Expand Down