ClearDebugBox: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(Remove obsolete Requirements section)
 
(One intermediate revision by one other user not shown)
Line 12: Line 12:


==Example==
==Example==
<section name="Client" class="client" show="true">
This example clears the debug window when any new debug message is displayed:
This example clears the debug window when any new debug message is displayed:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
Line 20: Line 21:
)
)
</syntaxhighlight>
</syntaxhighlight>
 
</section>
==Requirements==
{{Requirements|n/a|1.5.8-9.20854|}}


==See Also==
==See Also==
{{Client_output_functions}}
{{Client_output_functions}}

Latest revision as of 17:28, 7 November 2024

This function clears the debug box.

Syntax

bool clearDebugBox ( )

Returns

Always returns true.

Example

Click to collapse [-]
Client

This example clears the debug window when any new debug message is displayed:

addEventHandler ("onClientDebugMessage", root,
    function ()
         clearDebugBox ()
    end
)

See Also