io.github.tomwyr.godot-kotlin-tree
Owner: Tomasz Wyrowinski
A type-safe Godot node tree representation in Kotlin
https://github.com/tomwyr/godot-kotlin-tree
Sources: https://github.com/tomwyr/godot-kotlin-tree.git
Version 1.0.0 (latest)
1.0.0
Created 12 September 2024.
A type-safe Godot node tree representation in Kotlin
Using the plugins DSL:
plugins {
id("io.github.tomwyr.godot-kotlin-tree") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.tomwyr:godot-kotlin-tree:1.0.0")
}
}
apply(plugin = "io.github.tomwyr.godot-kotlin-tree")
Using the plugins DSL:
plugins {
id "io.github.tomwyr.godot-kotlin-tree" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.tomwyr:godot-kotlin-tree:1.0.0"
}
}
apply plugin: "io.github.tomwyr.godot-kotlin-tree"