tirbofish/dropbear · diff
debugging?
Signature present but could not be verified.
Unverified
@@ -92,7 +92,6 @@ kotlin { sourceSets { commonMain { dependencies { -// api("co.touchlab:kermit:2.0.4") implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.0") } } @@ -0,0 +1,36 @@ +# Debugging your app + +There is an issue while you are developing your game such as your code is +a bit funky, and you cannot seem to point it out yourself. Well there is no +need to fret. The eucalyptus-editor has a `jdb` enabled. + +## How to connect + +You have two options, you can either use the command line [`jdb`] or +IntelliJ IDEA, which has Java Debugging available as one of its tasks. + +In common, you would have to connect to this: +- IP Address: localhost +- Port: 6741 *(haha very funny im so much comedian)* + +### jdb + +To connect to jdb, this is the recommended command: + +```bash +jdb -connect com.sun.jdi.SocketAttach:hostname=localhost,port=6741 +``` + +[//]: # (Don't ask why, but this one just works for me) + +### IntelliJ IDEA + +JetBrains IntelliJ IDEA is the best and recommended tool to use +while in development. It contains debugging tools in a UI fashion, +so it could help beginners too. + +Here is the configuration:
Large diffs are not rendered by default. Showing the first 50 of 588 lines. Show full diff