Update to 0.12.1

This commit is contained in:
Ced Naru
2025-03-16 19:57:03 +01:00
parent 690f3758bc
commit dc3ac99f02
7 changed files with 25 additions and 19 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
plugins {
id("com.utopia-rise.godot-kotlin-jvm") version "0.11.0-4.3"
id("com.utopia-rise.godot-kotlin-jvm") version "0.12.1-4.4"
}
repositories {
+4 -4
View File
@@ -1,9 +1,9 @@
[gd_scene load_steps=5 format=3 uid="uid://bc08dhoyyn3kv"]
[ext_resource type="Script" path="res://scripts/godot/PrintText.gdj" id="1_s70mg"]
[ext_resource type="Script" path="res://scripts/godot/PrintTextJava.gdj" id="2_dbuvn"]
[ext_resource type="Script" path="res://src/main/kotlin/godot/PrintText.kt" id="3_0c1e5"]
[ext_resource type="Script" path="res://src/main/java/godot/PrintTextJava.java" id="4_5vg1y"]
[ext_resource type="Script" uid="uid://dpmo60385ts3o" path="res://scripts/godot/PrintText.gdj" id="1_s70mg"]
[ext_resource type="Script" uid="uid://daghftlocwaa" path="res://scripts/godot/PrintTextJava.gdj" id="2_dbuvn"]
[ext_resource type="Script" uid="uid://b147jobve7cc7" path="res://src/main/kotlin/godot/PrintText.kt" id="3_0c1e5"]
[ext_resource type="Script" uid="uid://b3hyil0fubcso" path="res://src/main/java/godot/PrintTextJava.java" id="4_5vg1y"]
[node name="Root" type="GridContainer"]
anchors_preset = 15
+1 -1
View File
@@ -12,7 +12,7 @@ config_version=5
config/name="Godot Kotlin/JVM Template"
run/main_scene="res://main.tscn"
config/features=PackedStringArray("4.3", "Forward Plus")
config/features=PackedStringArray("4.4", "Forward Plus")
config/icon="res://icon.svg"
[rendering]
+7 -5
View File
@@ -6,12 +6,14 @@ fqName = godot.PrintText
relativeSourcePath = src/main/kotlin/godot/PrintText.kt
baseType = Label
supertypes = [
godot.Label,
godot.Control,
godot.CanvasItem,
godot.Node,
godot.Object,
godot.api.Label,
godot.api.Control,
godot.api.CanvasItem,
godot.api.Node,
godot.api.Object,
godot.core.KtObject,
godot.common.interop.NativeWrapper,
godot.common.interop.NativePointer,
kotlin.Any
]
signals = [
+7 -5
View File
@@ -6,12 +6,14 @@ fqName = godot.PrintTextJava
relativeSourcePath = src/main/java/godot/PrintTextJava.java
baseType = Label
supertypes = [
godot.Label,
godot.Control,
godot.CanvasItem,
godot.Node,
godot.Object,
godot.api.Label,
godot.api.Control,
godot.api.CanvasItem,
godot.api.Node,
godot.api.Object,
godot.core.KtObject,
godot.common.interop.NativeWrapper,
godot.common.interop.NativePointer,
kotlin.Any
]
signals = [
+1
View File
@@ -4,6 +4,7 @@ import godot.annotation.Export;
import godot.annotation.RegisterClass;
import godot.annotation.RegisterFunction;
import godot.annotation.RegisterProperty;
import godot.api.Label;
@RegisterClass
public class PrintTextJava extends Label {
+1
View File
@@ -4,6 +4,7 @@ import godot.annotation.Export
import godot.annotation.RegisterClass
import godot.annotation.RegisterFunction
import godot.annotation.RegisterProperty
import godot.api.Label
@RegisterClass
class PrintText : Label() {