godot-kotlin-jvm
godot-kotlin-jvm copied to clipboard
Godot Kotlin JVM Module
I am using IDEA 2024.1 EAP and see the following error with the latest Godot-Kotlin plugin (0.8.1-4.2.0-IJ2023.2) installed: ```kotlin ava.lang.Throwable: Slow operations are prohibited on EDT. See SlowOperations.assertSlowOperationsAreAllowed javadoc. at...
If we create a regular thread in Kotlin which keeps running, like so: ```kotlin @RegisterClass class MyButton : Button() { @RegisterFunction override fun _pressed() { thread { GD.print("Sleeping") Thread.sleep(TimeUnit.HOURS.toMillis(1)) GD.print("Wake...
Hello :) I'm on a MacOS Sonoma 14.3 / ARM64, using the editor from the latest release (0.8.1, but I tried this also with 0.8.0) - I created a Kotlin...
Exporting an array in GDScript like this: ```gdscript @export var nodes: Array[Node3D] ``` ... produces a **typed** array editor like this:  Exporting the corresponding array property in Kotlin: ```kotlin...
Fixes #571 Note: this is intended as a quick fix for #571 so we can publish a hotfix. We still need to further investigate if a separate bootstrap jar for...
In editor everything works as expected. The bootstrap jar we ship with the editor build does include kotlin-reflect (`full` and `jvm`) due to: #452 . As a reminder for the...
This resolves #566
Is it possible to make hot reload of just builded code to running scene? Or is it possible to re-launch current scene after build in IntelliJ? This would improve workflow.
When trying to create a new project from godot's project manager, it creates a basic godot project and then editor crashes: ``` ------------------------------------- Translated Report (Full Report Below) ------------------------------------- Process:...
This removes xml kdoc generation by using doc provided in api json. To generate a new api use `--dump-extension-api-with-docs` engine argument.