Difference between revisions of "Debug"

(Created page with 'From [http://pgl.yoyo.org/luai/i/_ Lua Reference Manual]: <blockquote cite="http://pgl.yoyo.org/luai/i/debug.debug">Enters an interactive mode with the user, running each string …')
 
(Changed the link to the REAL lua reference manual)
Line 1: Line 1:
From [http://pgl.yoyo.org/luai/i/_ Lua Reference Manual]:
+
From [http://www.lua.org/manual/5.1/manual.html#pdf-debug.debug Lua Reference Manual]:
 
<blockquote cite="http://pgl.yoyo.org/luai/i/debug.debug">Enters an interactive mode with the user, running each string that the user enters. Using simple commands and other debug facilities, the user can inspect global and local variables, change their values, evaluate expressions, and so on. A line containing only the word <code>cont</code> finishes this function, so that the caller continues its execution.
 
<blockquote cite="http://pgl.yoyo.org/luai/i/debug.debug">Enters an interactive mode with the user, running each string that the user enters. Using simple commands and other debug facilities, the user can inspect global and local variables, change their values, evaluate expressions, and so on. A line containing only the word <code>cont</code> finishes this function, so that the caller continues its execution.
  

Revision as of 13:20, 15 August 2010

From Lua Reference Manual:

Enters an interactive mode with the user, running each string that the user enters. Using simple commands and other debug facilities, the user can inspect global and local variables, change their values, evaluate expressions, and so on. A line containing only the word cont finishes this function, so that the caller continues its execution. Note that commands for debug.debug are not lexically nested within any function, and so have no direct access to local variables.

function love.keypressed(key, u)
   --Debug
   if key == "rctrl" then --set to whatever key you want to use
      debug.debug()
   end
end