utopia-rise / godot-kotlin-jvm

Godot Kotlin JVM Module
MIT License
637 stars 46 forks source link

`JVM_` prefixed `VariantType` types not visible in inspector. #243

Closed chippmann closed 3 years ago

chippmann commented 3 years ago

Types like Int are not visible in inspector because godot doesn't know the ordinal of JVM_INT. Long on the other hand works as the ordinal of VariantType.LONG is correct.

CedNaru commented 3 years ago

Most likely an error when we copy the ordinal in the buffer. The JVM_ types are not supposed to put their own ordinal in it but the one of the enum they "wrap".