Skip to content
Blodhgarm edited this page May 8, 2023 · 5 revisions

Overview

Condensed Creative is a small library mod that allows for Mod or Datapack Developers to reduce Creative ItemGroup clutter by compacting similar Items into Condensed Entries that can be expanded or shrunk similar to Bedrock Edition of the Game.

These pages was written for the 1.19.3 Version of condensed creative and further!

Build Setup

Add the given maven below to your repositories section within your build.gradle:

repositories {
    maven { url 'https://maven.wispforest.io' }
}

Afterwards you must declare the dependency within your dependencies section and at the same time you will need to declare the version being used with your projects gradle.properties. Depending on your given mod loader, you will need to use the specified dependency implementation below:

build.gradle

```groovy
dependencies {
    //Loom (Fabric / Quilt / Forge Loom)
    modImplementation "io.wispforest:condensed_creative-fabric:${project.condensed_creative_version}"
    
    //Base Forge
    implementation fg.deobf("io.wispforest:condensed_creative-forge:${project.condensed_creative_version}")
}
```

gradle.properties

```
condensed_creative_version={targeted_version}
```

Note: If you are using Architectury, you can get the Common version using modImplementation "io.wispforest:condensed_creative-common:${project.condensed_creative_version}"

Clone this wiki locally