Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wisp-forest/condensed-creative
A convenient way to store similar items in a single, expandable Condensed Slot
https://github.com/wisp-forest/condensed-creative
fabric-mod minecraft-mod utility
Last synced: about 1 month ago
JSON representation
A convenient way to store similar items in a single, expandable Condensed Slot
- Host: GitHub
- URL: https://github.com/wisp-forest/condensed-creative
- Owner: wisp-forest
- License: mit
- Created: 2022-05-18T22:01:40.000Z (over 2 years ago)
- Default Branch: MultiLoader-1.20.x
- Last Pushed: 2024-08-19T00:20:14.000Z (4 months ago)
- Last Synced: 2024-08-19T01:35:40.349Z (4 months ago)
- Topics: fabric-mod, minecraft-mod, utility
- Language: Java
- Homepage:
- Size: 523 KB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
- License: LICENSE
Awesome Lists containing this project
README
# Condensed Creative
[![curseforge](https://img.shields.io/badge/-CurseForge-gray?style=for-the-badge&logo=curseforge&labelColor=orange)](https://www.curseforge.com/minecraft/mc-mods/cci)
[![modrinth](https://img.shields.io/badge/-modrinth-gray?style=for-the-badge&labelColor=green&labelWidth=15&logo=appveyor&logoColor=white)](https://modrinth.com/mod/condensed-creative)
[![release](https://img.shields.io/github/v/release/wisp-forest/CondensedCreativeItems?logo=github&style=for-the-badge)](https://github.com/wisp-forest/CondensedCreativeItems/releases)
[![discord](https://img.shields.io/discord/825828008644313089?label=wisp%20forest&logo=discord&logoColor=white&style=for-the-badge)](https://discord.gg/xrwHKktV2d)## Overview
Condensed Creative is currently a small library mod that allows for Mod creators to condense items into one slot similar to the Bedrock version of the game. Upon clicking the slot, it will expand to show what is all within Condensed Entry. Such is basically a space saver for blocks or items that are very similar, with the creative tab.
**Build Setup:**
```grovvy
repositories {
maven { url 'https://maven.wispforest.io' }
}dependencies {
// Recommend creating a CondensedCreativeItems version within your gradle.properties
//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}")
}