godot-kotlin-jvm icon indicating copy to clipboard operation
godot-kotlin-jvm copied to clipboard

Godot Kotlin JVM Module

Results 183 godot-kotlin-jvm issues
Sort by recently updated
recently updated
newest added

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...

bug
topic:ide-plugin

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...

bug
topic:core

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...

topic:documentation
enhancement

Exporting an array in GDScript like this: ```gdscript @export var nodes: Array[Node3D] ``` ... produces a **typed** array editor like this: ![image](https://github.com/utopia-rise/godot-kotlin-jvm/assets/16356998/2baae3a7-ee94-4149-8e3b-a5226c9b559d) Exporting the corresponding array property in Kotlin: ```kotlin...

bug
topic:entry-gen

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...

bug
topic:gradle-plugin

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:...

bug

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.