Jump to content

Recommended Posts

Posted

Hello,

 

I often need to print some info on the screen in order to speed-up development and debugging phases, but I noticed that AddText has no effect. Is there any way to print text in the editor (even for CTRL-G only)?

 

Thank you!

Posted

There is a drawing hook that you can assign a Lua method to and inside there you can draw 2D stuff like text.

 

AddHook("Flip", MyFunction)

 

"Flip" is a keyword and for drawing you need that, then the function can be any Lua function.

 

function MyFunction()

-- Draw images or text here

end

Posted

There is a drawing hook that you can assign a Lua method to and inside there you can draw 2D stuff like text.

 

AddHook("Flip", MyFunction)

 

"Flip" is a keyword and for drawing you need that, then the function can be any Lua function.

 

function MyFunction()

-- Draw images or text here

end

 

Thank you Rick! I will test it tonight (I'm at work now :-)

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...