• Dear Cerberus X User!

    As we prepare to transition the forum ownership from Mike to Phil (TripleHead GmbH), we need your explicit consent to transfer your user data in accordance with our amended Terms and Rules in order to be compliant with data protection laws.

    Important: If you accept the amended Terms and Rules, you agree to the transfer of your user data to the future forum owner!

    Please read the new Terms and Rules below, check the box to agree, and click "Accept" to continue enjoying your Cerberus X Forum experience. The deadline for consent is April 5, 2024.

    Do not accept the amended Terms and Rules if you do not wish your personal data to be transferred to the future forum owner!

    Accepting ensures:

    - Continued access to your account with a short break for the actual transfer.

    - Retention of your data under the same terms.

    Without consent:

    - You don't have further access to your forum user account.

    - Your account and personal data will be deleted after April 5, 2024.

    - Public posts remain, but usernames indicating real identity will be anonymized. If you disagree with a fictitious name you have the option to contact us so we can find a name that is acceptable to you.

    We hope to keep you in our community and see you on the forum soon!

    All the best

    Your Cerberus X Team

Snippet Console tricks

Wingnut

Well-known member
3rd Party Module Dev
Tutorial Author
Joined
Jan 2, 2020
Messages
1,414
Here's a simple command that you can use for whenever you are doing long sessions of debugging and use HTML5.

Cerberus:
' A Clear console command
' Only use while you compile for the HTML5 platform!
' A simple console clear command can be powerful and it's often practical to use HTML5 to debug your code while developing for other platforms as it allows for quick testing.
' If you have your console to output debug information it can eventually become a mess and hard to scroll around in, that's when this command will be helpful.
' Sure you can always print out dividers and labels for information but sometimes you need to make it neater to find information later.
' By the way, this clean command can also help you to keep the log from growing into infinity, when you want to run code for a long time.

Strict
Import mojo2

' Add JavaScript in Cerberus sourcecode ----------
Extern Private
    Function ClearConsole:Void() = "(function(){var el=document.getElementById(~qGameConsole~q);if(el){el.value=~q~q;}})"
Public

' -----------------------------------------------------

Function Main:Int()
    New Test()
    Return 0
End

Class Test Extends App

    Field canvas:Canvas
    Field temp:Int = 0
 
    Method OnCreate:Int()
        canvas = New Canvas() ; SetUpdateRate 0
        Return 0
    End
 
    Method OnUpdate:Int()
        Print "This is a messy console (press left mouse button to clear)"
        If MouseHit(0) Then ClearConsole() ; Print "Console cleared!"
        Return 0
    End
 
    Method OnRender:Int()
        canvas.Clear
        canvas.Flush
        Return 0
    End
 
End
 
Last edited:
Here's a simple command that you can use for whenever you are doing long sessions of debugging and use HTML5.
Cool man I lov it
 
Back
Top Bottom