Перейти к содержимому
Mineforgian

LibuLib

Library of Lumaa which includes a custom made generation system.

Загрузки
7K
Подписчики
2
Обновлён
24 апреля 2023 г.
Лицензия
MIT

Опубликован 28 декабря 2022 г.

LibuLib

Fabric Forge GitBook Support Discord
Gradle JitPack

LibuLib is a library mod made for all the mods by myself

Use it in your mod by doing the following (JitPack):

gradle.properties:

# Put the latest version of LibuLib
libu_version = 1.2.1

build.gradle:

repositories {
	maven {
		url "https://jitpack.io"
	}
}

dependencies {
	// LibuLib
	modImplementation "com.github.u-lumaa:LibuLib:${libu_version}"
}

Use developer versions at your own risk


You can use it in your mod by doing the following (Modrinth Maven):

gradle.properties:

# Put the latest version of LibuLib
libu_version = 1.2.1

build.gradle:

repositories {
    exclusiveContent {
        forRepository {
            maven {
                name = "Modrinth"
                url = "https://api.modrinth.com/maven"
            }
        }
        filter {
            includeGroup "maven.modrinth"
        }
    }
}

dependencies {
    modImplementation "maven.modrinth:libu:${libu_version}"
}

Ченджлог

1.4.0-forgeБета1.19.4 · 24 апреля 2023 г.

General

Cross-compatibility with Fabric and Forge.
Cross-compatibility causes new bugs See the following list down below to see the new bugs.

Changed

  • Maze Tool is not in any creative tabs anymore.
  • Removed the glint from the Maze Tool

New bugs

This section of the changelog will only be present only if features from pre-Forge are now bugged

  • GenerationCore & MazeCore can't fill() air (using Blocks.AIR.defaultBlockState())
1.4.0-fabricБета1.19.4 · 24 апреля 2023 г.

General

Cross-compatibility with Fabric and Forge.
Cross-compatibility causes new bugs See the following list down below to see the new bugs.

Changed

  • Maze Tool is not in any creative tabs anymore.
  • Removed the glint from the Maze Tool

New bugs

This section of the changelog will only be present only if features from pre-Forge are now bugged

  • GenerationCore & MazeCore can't fill() air (using Blocks.AIR.defaultBlockState())
1.3.1Релиз1.19.4 · 21 апреля 2023 г.

Added

AnglePitch and AngleYaw to the MinecraftGeometry class

1.3.0Релиз1.19.4 · 21 апреля 2023 г.

Added

  • Geometry & MinecraftGeometry classes
  • IGenerator interface

Experimental

  • Libu UI
  • Pattern (GenerationCore)

Full Changelog: https://github.com/lumaa-dev/LibuLib/compare/1.2.1...1.3.0

1.2.1Релиз1.19.4 · 21 марта 2023 г.

General

Fixed compatibility with Minecraft 1.19.4

1.2.0-1.19.4Альфа1.19.4 · 16 марта 2023 г.

This version might not work.

This is a patch version of version 1.2.0 in 1.19.4

Full Changelog: https://github.com/lumaa-dev/LibuLib/compare/1.2.0...1.2.0-1.19.4

1.2.0Релиз1.19.3 · 28 февраля 2023 г.

Added

Library tag in the Mod Menu

Removed

All stuff related to UpdateChecker, Mod Menu is currently making a better one.

Useless lines of code


Full Changelog: https://github.com/lumaa-dev/LibuLib/compare/1.1.2...1.2.0

1.1.2Релиз1.19.3 · 21 февраля 2023 г.

Bug fixes

I ACTUALLY fixed the Maze Tool description

Комментарии

Загружаем…