com.onemillionworlds.typed-materials
Owner: Richard Tingle
A plugin to synthesis java classes for jMonkeyEngine materials allowing them to be configured using type safe java code
https://github.com/oneMillionWorlds/TypedMaterials/wiki
Sources: https://github.com/oneMillionWorlds/TypedMaterials
Version 1.3.2 (latest)
1.3.2
Created 27 October 2024.
A plugin to synthesize java classes for jMonkeyEngine materials allowing them to be configured using type safe java code
Using the plugins DSL:
plugins {
id("com.onemillionworlds.typed-materials") version "1.3.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.onemillionworlds:plugin:1.3.2")
}
}
apply(plugin = "com.onemillionworlds.typed-materials")
Using the plugins DSL:
plugins {
id "com.onemillionworlds.typed-materials" version "1.3.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.onemillionworlds:plugin:1.3.2"
}
}
apply plugin: "com.onemillionworlds.typed-materials"