net.wooga.build-unity-webgl
Owner: Manne Endres
This plugin provides tasks for building exported webGL projects from Unity3D
https://wooga.github.io/atlas-unity/
Sources: https://github.com/wooga/atlas-unity
Version 0.16.0-rc.1 (latest)
0.16.0-rc.1
Created 23 September 2019.
This plugin provides tasks for building exported webGL projects from Unity3D
Using the plugins DSL:
plugins {
id("net.wooga.build-unity-webgl") version "0.16.0-rc.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.net.wooga.gradle:atlas-build-unity:0.16.0-rc.1")
}
}
apply(plugin = "net.wooga.build-unity-webgl")
Using the plugins DSL:
plugins {
id "net.wooga.build-unity-webgl" version "0.16.0-rc.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.wooga.gradle:atlas-build-unity:0.16.0-rc.1"
}
}
apply plugin: "net.wooga.build-unity-webgl"