mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-01-10 01:10:30 +00:00
4b102f16b3
API Changes: - Minecraft had updated ModelResourceLocation to no longer inherit from ResourceLocation. To allow referencing both already baked models (ModelResourceLocation) and loading new models (via ResourceLocation) in turtle model loadders, we add a new "ModelLocation" class, that acts as a union between the two. I'm not entirely convinced by the design here, so might end up changing again before a stable release.o - Merge IMedia.getAudioTitle and IMedia.getAudio into a single IMedia.getAudio method, which now returns a JukeboxSong rather than a SoundEvent. Other update notes: - Minecraft had rewritten how buffers are managed again. This is a fairly minor change for us (vertex -> addVertex, normal -> setNormal, etc...), with the exception that you can no longer use MultiBufferSource.immediate with the tesselator. I've replaced this with GuiGraphics.bufferSource, which appears to be fine, but worth keeping an eye on in case there's any odd render state issues. - Crafting now uses a CraftingInput (a list of items) rather than a CraftingContainer, which allows us to simplify turtle crafting code.
19 lines
463 B
Properties
19 lines
463 B
Properties
# SPDX-FileCopyrightText: 2017 The CC: Tweaked Developers
|
|
#
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
org.gradle.jvmargs=-Xmx3G -Dfile.encoding=UTF-8
|
|
org.gradle.parallel=true
|
|
|
|
kotlin.stdlib.default.dependency=false
|
|
kotlin.jvm.target.validation.mode=error
|
|
|
|
neogradle.subsystems.conventions.runs.enabled=false
|
|
|
|
# Mod properties
|
|
isUnstable=true
|
|
modVersion=1.111.0
|
|
|
|
# Minecraft properties: We want to configure this here so we can read it in settings.gradle
|
|
mcVersion=1.21
|