mirror of
https://github.com/stan220/godot-kotlin-project-template.git
synced 2026-09-08 15:28:59 +00:00
Update to 0.12.1
This commit is contained in:
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
plugins {
|
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 {
|
repositories {
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
[gd_scene load_steps=5 format=3 uid="uid://bc08dhoyyn3kv"]
|
[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" uid="uid://dpmo60385ts3o" 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" uid="uid://daghftlocwaa" 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" uid="uid://b147jobve7cc7" 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://b3hyil0fubcso" path="res://src/main/java/godot/PrintTextJava.java" id="4_5vg1y"]
|
||||||
|
|
||||||
[node name="Root" type="GridContainer"]
|
[node name="Root" type="GridContainer"]
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
|
|||||||
+1
-1
@@ -12,7 +12,7 @@ config_version=5
|
|||||||
|
|
||||||
config/name="Godot Kotlin/JVM Template"
|
config/name="Godot Kotlin/JVM Template"
|
||||||
run/main_scene="res://main.tscn"
|
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"
|
config/icon="res://icon.svg"
|
||||||
|
|
||||||
[rendering]
|
[rendering]
|
||||||
|
|||||||
@@ -6,12 +6,14 @@ fqName = godot.PrintText
|
|||||||
relativeSourcePath = src/main/kotlin/godot/PrintText.kt
|
relativeSourcePath = src/main/kotlin/godot/PrintText.kt
|
||||||
baseType = Label
|
baseType = Label
|
||||||
supertypes = [
|
supertypes = [
|
||||||
godot.Label,
|
godot.api.Label,
|
||||||
godot.Control,
|
godot.api.Control,
|
||||||
godot.CanvasItem,
|
godot.api.CanvasItem,
|
||||||
godot.Node,
|
godot.api.Node,
|
||||||
godot.Object,
|
godot.api.Object,
|
||||||
godot.core.KtObject,
|
godot.core.KtObject,
|
||||||
|
godot.common.interop.NativeWrapper,
|
||||||
|
godot.common.interop.NativePointer,
|
||||||
kotlin.Any
|
kotlin.Any
|
||||||
]
|
]
|
||||||
signals = [
|
signals = [
|
||||||
|
|||||||
@@ -6,13 +6,15 @@ fqName = godot.PrintTextJava
|
|||||||
relativeSourcePath = src/main/java/godot/PrintTextJava.java
|
relativeSourcePath = src/main/java/godot/PrintTextJava.java
|
||||||
baseType = Label
|
baseType = Label
|
||||||
supertypes = [
|
supertypes = [
|
||||||
godot.Label,
|
godot.api.Label,
|
||||||
godot.Control,
|
godot.api.Control,
|
||||||
godot.CanvasItem,
|
godot.api.CanvasItem,
|
||||||
godot.Node,
|
godot.api.Node,
|
||||||
godot.Object,
|
godot.api.Object,
|
||||||
godot.core.KtObject,
|
godot.core.KtObject,
|
||||||
kotlin.Any
|
godot.common.interop.NativeWrapper,
|
||||||
|
godot.common.interop.NativePointer,
|
||||||
|
kotlin.Any
|
||||||
]
|
]
|
||||||
signals = [
|
signals = [
|
||||||
|
|
||||||
@@ -22,4 +24,4 @@ properties = [
|
|||||||
]
|
]
|
||||||
functions = [
|
functions = [
|
||||||
_ready
|
_ready
|
||||||
]
|
]
|
||||||
@@ -4,6 +4,7 @@ import godot.annotation.Export;
|
|||||||
import godot.annotation.RegisterClass;
|
import godot.annotation.RegisterClass;
|
||||||
import godot.annotation.RegisterFunction;
|
import godot.annotation.RegisterFunction;
|
||||||
import godot.annotation.RegisterProperty;
|
import godot.annotation.RegisterProperty;
|
||||||
|
import godot.api.Label;
|
||||||
|
|
||||||
@RegisterClass
|
@RegisterClass
|
||||||
public class PrintTextJava extends Label {
|
public class PrintTextJava extends Label {
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import godot.annotation.Export
|
|||||||
import godot.annotation.RegisterClass
|
import godot.annotation.RegisterClass
|
||||||
import godot.annotation.RegisterFunction
|
import godot.annotation.RegisterFunction
|
||||||
import godot.annotation.RegisterProperty
|
import godot.annotation.RegisterProperty
|
||||||
|
import godot.api.Label
|
||||||
|
|
||||||
@RegisterClass
|
@RegisterClass
|
||||||
class PrintText : Label() {
|
class PrintText : Label() {
|
||||||
|
|||||||
Reference in New Issue
Block a user