diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/client/Ext.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/client/Ext.kt index 4103e8d04..4e45b1e5e 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/client/Ext.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/client/Ext.kt @@ -4,6 +4,10 @@ import net.minecraft.client.Minecraft import net.minecraft.client.gui.Font import net.minecraft.client.resources.sounds.SimpleSoundInstance import net.minecraft.sounds.SoundEvents +import org.lwjgl.glfw.GLFW +import java.nio.ByteBuffer +import java.nio.ByteOrder +import java.nio.DoubleBuffer inline val minecraft: Minecraft get() = Minecraft.getInstance() inline val font: Font get() = minecraft.font @@ -11,3 +15,64 @@ inline val font: Font get() = minecraft.font fun playGuiClickSound() { minecraft.soundManager.play(SimpleSoundInstance.forUI(SoundEvents.UI_BUTTON_CLICK, 1.0f)) } + +fun setMousePos(x: Double, y: Double) { + GLFW.glfwSetCursorPos(minecraft.window.window, x, y) +} + +private val cursorXPosBuf = ByteBuffer.allocateDirect(8).also { it.order(ByteOrder.LITTLE_ENDIAN) }.asDoubleBuffer() +private val cursorYPosBuf = ByteBuffer.allocateDirect(8).also { it.order(ByteOrder.LITTLE_ENDIAN) }.asDoubleBuffer() + +data class MousePos(val x: Double, val y: Double) { + fun set() { + setMousePos(x, y) + } + + fun move(x: Double = 0.0, y: Double = 0.0) { + GLFW.glfwSetCursorPos(minecraft.window.window, this.x + x, this.y + y) + } + + fun move(x: Float = 0.0f, y: Float = 0.0f) { + GLFW.glfwSetCursorPos(minecraft.window.window, this.x + x, this.y + y) + } + + fun moveScaled(x: Double = 0.0, y: Double = 0.0) { + GLFW.glfwSetCursorPos(minecraft.window.window, this.x + x * minecraft.window.guiScale, this.y + y * minecraft.window.guiScale) + } + + fun moveScaled(x: Float = 0.0f, y: Float = 0.0f) { + GLFW.glfwSetCursorPos(minecraft.window.window, this.x + x * minecraft.window.guiScale, this.y + y * minecraft.window.guiScale) + } +} + +val mousePos: MousePos get() { + cursorXPosBuf.position(0) + cursorYPosBuf.position(0) + + GLFW.glfwGetCursorPos(minecraft.window.window, cursorXPosBuf, cursorYPosBuf) + + cursorXPosBuf.position(0) + cursorYPosBuf.position(0) + + return MousePos(cursorXPosBuf.get(), cursorYPosBuf.get()) +} + +fun moveMousePos(x: Double = 0.0, y: Double = 0.0) { + val (currentX, currentY) = mousePos + GLFW.glfwSetCursorPos(minecraft.window.window, currentX + x, currentY + y) +} + +fun moveMousePos(x: Float = 0.0f, y: Float = 0.0f) { + val (currentX, currentY) = mousePos + GLFW.glfwSetCursorPos(minecraft.window.window, currentX + x, currentY + y) +} + +fun moveMousePosScaled(x: Double = 0.0, y: Double = 0.0) { + val (currentX, currentY) = mousePos + GLFW.glfwSetCursorPos(minecraft.window.window, currentX + x * minecraft.window.guiScale, currentY + y * minecraft.window.guiScale) +} + +fun moveMousePosScaled(x: Float = 0.0f, y: Float = 0.0f) { + val (currentX, currentY) = mousePos + GLFW.glfwSetCursorPos(minecraft.window.window, currentX + x * minecraft.window.guiScale, currentY + y * minecraft.window.guiScale) +} diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/client/render/SkinElement.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/client/render/SkinElement.kt index 3eb4cc711..97435aaee 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/client/render/SkinElement.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/client/render/SkinElement.kt @@ -6,7 +6,7 @@ import net.minecraft.resources.ResourceLocation import ru.dbotthepony.mc.otm.client.screen.panels.DockProperty @Suppress("unused") -class SkinGrid( +data class SkinGrid( val texture: ResourceLocation, val width: Float, val height: Float, @@ -92,14 +92,15 @@ fun ResourceLocation.vLine( ) = SkinElement(this, x, y, 1f, height, textureWidth, textureHeight) @Suppress("unused") -class SkinElement @JvmOverloads constructor( +data class SkinElement @JvmOverloads constructor( val texture: ResourceLocation, val x: Float, val y: Float, val width: Float, val height: Float, val imageWidth: Float = 256f, - val imageHeight: Float = 256f + val imageHeight: Float = 256f, + val winding: UVWindingOrder = UVWindingOrder.NORMAL ) { init { require(x >= 0f) { "Invalid x $x" } @@ -117,7 +118,7 @@ class SkinElement @JvmOverloads constructor( y: Float = 0f, width: Float = this.width, height: Float = this.height, - winding: UVWindingOrder = UVWindingOrder.U0_V0_U1_V1 + winding: UVWindingOrder = this.winding ) { RenderSystem.setShaderTexture(0, texture) RenderSystem.enableBlend() @@ -133,7 +134,7 @@ class SkinElement @JvmOverloads constructor( y: Double = 0.0, width: Double = this.width.toDouble(), height: Double = this.height.toDouble(), - winding: UVWindingOrder = UVWindingOrder.U0_V0_U1_V1 + winding: UVWindingOrder = this.winding ) = render(stack, x.toFloat(), y.toFloat(), width.toFloat(), height.toFloat(), winding) @JvmOverloads @@ -143,7 +144,7 @@ class SkinElement @JvmOverloads constructor( y: Float = 0f, width: Float = this.width, height: Float = this.height, - winding: UVWindingOrder = UVWindingOrder.U0_V0_U1_V1 + winding: UVWindingOrder = this.winding ) { RenderSystem.setShaderTexture(0, texture) RenderSystem.enableBlend() @@ -159,7 +160,7 @@ class SkinElement @JvmOverloads constructor( y: Double = 0.0, width: Double = this.width.toDouble(), height: Double = this.height.toDouble(), - winding: UVWindingOrder = UVWindingOrder.U0_V0_U1_V1 + winding: UVWindingOrder = this.winding ) = renderPartial(stack, x.toFloat(), y.toFloat(), width.toFloat(), height.toFloat(), winding) @JvmOverloads @@ -168,7 +169,7 @@ class SkinElement @JvmOverloads constructor( x: Float = 0f, y: Float = 0f, width: Float = this.width, - winding: UVWindingOrder = UVWindingOrder.U0_V0_U1_V1, + winding: UVWindingOrder = this.winding ) { render(stack, x, y, width = width, winding = winding) } @@ -179,7 +180,7 @@ class SkinElement @JvmOverloads constructor( x: Double, y: Double = 0.0, width: Double = this.width.toDouble(), - winding: UVWindingOrder = UVWindingOrder.U0_V0_U1_V1, + winding: UVWindingOrder = this.winding, ) = renderWidth(stack, x.toFloat(), y.toFloat(), width.toFloat(), winding) @JvmOverloads @@ -188,7 +189,7 @@ class SkinElement @JvmOverloads constructor( x: Float = 0f, y: Float = 0f, height: Float = this.height, - winding: UVWindingOrder = UVWindingOrder.U0_V0_U1_V1, + winding: UVWindingOrder = this.winding, ) { render(stack, x, y, height = height, winding = winding) } @@ -199,7 +200,7 @@ class SkinElement @JvmOverloads constructor( x: Double, y: Double = 0.0, height: Double = this.height.toDouble(), - winding: UVWindingOrder = UVWindingOrder.U0_V0_U1_V1, + winding: UVWindingOrder = this.winding, ) = renderHieght(stack, x.toFloat(), y.toFloat(), height.toFloat(), winding) private val u0 = this.x / imageWidth @@ -214,7 +215,7 @@ class SkinElement @JvmOverloads constructor( y: Float = 0f, width: Float = this.width, height: Float = this.height, - winding: UVWindingOrder = UVWindingOrder.U0_V0_U1_V1 + winding: UVWindingOrder = UVWindingOrder.NORMAL ) { val winded = winding.translate(u0, v0, u1, v1) @@ -235,7 +236,7 @@ class SkinElement @JvmOverloads constructor( y: Double = 0.0, width: Double = this.width.toDouble(), height: Double = this.height.toDouble(), - winding: UVWindingOrder = UVWindingOrder.U0_V0_U1_V1 + winding: UVWindingOrder = UVWindingOrder.NORMAL ) = renderRaw(stack, x.toFloat(), y.toFloat(), width.toFloat(), height.toFloat(), winding) @JvmOverloads @@ -245,7 +246,7 @@ class SkinElement @JvmOverloads constructor( y: Float = 0f, width: Float = this.width, height: Float = this.height, - winding: UVWindingOrder = UVWindingOrder.U0_V0_U1_V1 + winding: UVWindingOrder = UVWindingOrder.NORMAL ) { val u1 = (this.x + width) / imageWidth val v1 = (this.y + height) / imageHeight @@ -269,11 +270,11 @@ class SkinElement @JvmOverloads constructor( y: Double = 0.0, width: Double = this.width.toDouble(), height: Double = this.height.toDouble(), - winding: UVWindingOrder = UVWindingOrder.U0_V0_U1_V1 + winding: UVWindingOrder = UVWindingOrder.NORMAL ) = renderRawPartial(stack, x.toFloat(), y.toFloat(), width.toFloat(), height.toFloat(), winding) } -class StretchingRectangleElement( +data class StretchingRectangleElement( val topLeft: SkinElement, val topRight: SkinElement, val bottomLeft: SkinElement, diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/client/render/Widgets.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/client/render/Widgets.kt new file mode 100644 index 000000000..ab9cbb6be --- /dev/null +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/client/render/Widgets.kt @@ -0,0 +1,15 @@ +package ru.dbotthepony.mc.otm.client.render + +object Widgets { + val SLOT = WidgetLocation.WIDGETS.element(0f, 0f, 18f, 18f) + + val ARROW_UP_BUTTON_IDLE = WidgetLocation.WIDGETS.element(0f, 18f, 18f, 6f) + val ARROW_UP_BUTTON_HOVERED = WidgetLocation.WIDGETS.element(0f, 18f + 6f, 18f, 6f) + val ARROW_UP_BUTTON_PRESSED = WidgetLocation.WIDGETS.element(0f, 18f + 6f * 2f, 18f, 6f) + val ARROW_UP_BUTTON_DISABLED = WidgetLocation.WIDGETS.element(0f, 18f + 6f * 3f, 18f, 6f) + + val ARROW_DOWN_BUTTON_IDLE = ARROW_UP_BUTTON_IDLE.copy(winding = UVWindingOrder.FLIP) + val ARROW_DOWN_BUTTON_HOVERED = ARROW_UP_BUTTON_HOVERED.copy(winding = UVWindingOrder.FLIP) + val ARROW_DOWN_BUTTON_PRESSED = ARROW_UP_BUTTON_PRESSED.copy(winding = UVWindingOrder.FLIP) + val ARROW_DOWN_BUTTON_DISABLED = ARROW_UP_BUTTON_DISABLED.copy(winding = UVWindingOrder.FLIP) +} diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/ExoSuitInventoryScreen.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/ExoSuitInventoryScreen.kt index 59e066909..c0350dffa 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/ExoSuitInventoryScreen.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/ExoSuitInventoryScreen.kt @@ -3,10 +3,14 @@ package ru.dbotthepony.mc.otm.client.screen import com.mojang.blaze3d.platform.InputConstants import com.mojang.blaze3d.vertex.PoseStack import net.minecraft.client.gui.screens.inventory.InventoryScreen +import ru.dbotthepony.mc.otm.client.mousePos +import ru.dbotthepony.mc.otm.client.moveMousePos +import ru.dbotthepony.mc.otm.client.moveMousePosScaled import ru.dbotthepony.mc.otm.client.render.Widgets18 import ru.dbotthepony.mc.otm.core.TranslatableComponent import ru.dbotthepony.mc.otm.client.render.element import ru.dbotthepony.mc.otm.client.screen.panels.* +import ru.dbotthepony.mc.otm.client.setMousePos import ru.dbotthepony.mc.otm.client.shouldOpenVanillaInventory import ru.dbotthepony.mc.otm.menu.ExoSuitInventoryMenu import ru.dbotthepony.mc.otm.network.ExoSuitMenuOpen @@ -15,25 +19,59 @@ import yalter.mousetweaks.api.MouseTweaksDisableWheelTweak @MouseTweaksDisableWheelTweak class ExoSuitInventoryScreen(menu: ExoSuitInventoryMenu) : MatteryScreen(menu, TranslatableComponent("otm.gui.exosuit")) { + var inventoryRows = 3 + set(value) { + val newValue = value.coerceAtLeast(3).coerceAtMost(6) + val old = field + + if (field != newValue) { + field = newValue + + if (mainFrame != null) { + updateInventoryRows(old) + } + } + } + + private lateinit var mainInventoryLine: EditablePanel + private lateinit var scrollPanel: DiscreteScrollBarPanel + + private fun updateInventoryRows(old: Int) { + mainFrame!!.height = FRAME_BASE_HEIGHT + inventoryRows * AbstractSlotPanel.SIZE + mainInventoryLine.height = AbstractSlotPanel.SIZE * inventoryRows + + for (i in scrollPanel.scroll until scrollPanel.scroll + old) { + getInventorySlotsRow(i).visible = false + } + + for (i in scrollPanel.scroll until scrollPanel.scroll + inventoryRows) { + getInventorySlotsRow(i).also { + it.parent = mainInventoryLine + it.y = AbstractSlotPanel.SIZE * (i - scrollPanel.scroll) + it.visible = true + } + } + + scrollPanel.scroll = scrollPanel.scroll + } + override fun makeMainFrame(): FramePanel> { - val frame = FramePanel(this, width = 200f, height = 180f, title = this.title) + val frame = FramePanel(this, width = 200f, height = FRAME_BASE_HEIGHT + inventoryRows * AbstractSlotPanel.SIZE, title = this.title) val toolbeltLine = EditablePanel(this, frame, height = 18f) toolbeltLine.dock = Dock.BOTTOM toolbeltLine.setDockMargin(top = 3f) - var mainInventoryLine: EditablePanel<*>? = null - - val scrollPanel = DiscreteScrollBarPanel(this, null, maxScroll = { ((menu.playerCombinedInventorySlots.size - 27) + 8) / 9 }, + scrollPanel = DiscreteScrollBarPanel(this, null, maxScroll = { ((menu.playerCombinedInventorySlots.size - inventoryRows * 9) + 8) / 9 }, scrollCallback = { _, old, new -> - for (i in old .. old + 2) { + for (i in old until old + inventoryRows) { getInventorySlotsRow(i).visible = false } - for (i in new .. new + 2) { + for (i in new until new + inventoryRows) { val row = getInventorySlotsRow(i) row.visible = true row.y = (i - new) * AbstractSlotPanel.SIZE @@ -43,14 +81,13 @@ class ExoSuitInventoryScreen(menu: ExoSuitInventoryMenu) : MatteryScreen(this@ExoSuitInventoryScreen, frame, height = 18f * 3f) { + mainInventoryLine = object : EditablePanel(this@ExoSuitInventoryScreen, frame, height = AbstractSlotPanel.SIZE * inventoryRows) { override fun mouseScrolledInner(x: Double, y: Double, scroll: Double): Boolean { return scrollPanel.mouseScrolledInner(x, y, scroll) } } + scrollPanel.scroll = menu.lastScroll scrollPanel.parent = mainInventoryLine mainInventoryLine.dock = Dock.BOTTOM @@ -63,7 +100,7 @@ class ExoSuitInventoryScreen(menu: ExoSuitInventoryMenu) : MatteryScreen( + object : EditablePanel( this@ExoSuitInventoryScreen, craftingCanvas, x = craftingSlotsCanvas.width, @@ -132,15 +169,27 @@ class ExoSuitInventoryScreen(menu: ExoSuitInventoryMenu) : MatteryScreen 3) + }.also { + it.controlStatus = HeightControls.Status.of(inventoryRows < 6, inventoryRows > 3) + } + return frame } @@ -153,5 +202,7 @@ class ExoSuitInventoryScreen(menu: ExoSuitInventoryMenu) : MatteryScreen>( +open class ButtonPanel( screen: S, parent: EditablePanel<*>?, x: Float = 0f, @@ -42,6 +42,10 @@ open class ButtonPanel>( protected var callback: Runnable? = null protected var pressed = false + protected open fun onClick(button: Int) { + callback?.run() + } + override fun mouseClickedInner(x: Double, y: Double, button: Int): Boolean { if (isDisabled || pressed) { return true @@ -62,7 +66,7 @@ open class ButtonPanel>( pressed = false if (isHovered) { - callback?.run() + onClick(button) } return true @@ -113,7 +117,7 @@ open class ButtonPanel>( } @Suppress("PropertyName") -abstract class RectangleButtonPanel>( +abstract class RectangleButtonPanel( screen: S, parent: EditablePanel<*>?, x: Float = 0f, @@ -124,7 +128,7 @@ abstract class RectangleButtonPanel>( ) : EditablePanel(screen, parent, x, y, width, height) { protected var pressed = false - protected open fun click(clickButton: Int) { + protected open fun onClick(clickButton: Int) { onPress?.invoke(clickButton) } @@ -175,7 +179,7 @@ abstract class RectangleButtonPanel>( pressed = false if (isHovered) { - click(button) + onClick(button) } } @@ -185,7 +189,7 @@ abstract class RectangleButtonPanel>( } } -abstract class EnumRectangleButtonPanel, T : Enum>( +abstract class EnumRectangleButtonPanel>( screen: S, parent: EditablePanel<*>?, x: Float = 0f, @@ -293,7 +297,7 @@ abstract class EnumRectangleButtonPanel, T : return super.mouseReleasedInner(x, y, button) } - override fun click(clickButton: Int) { + override fun onClick(clickButton: Int) { when (clickButton) { InputConstants.MOUSE_BUTTON_LEFT -> { prop.set(prop.get().next(enum.enumConstants)) @@ -354,7 +358,7 @@ abstract class EnumRectangleButtonPanel, T : } } -open class LargeRectangleButtonPanel>( +open class LargeRectangleButtonPanel( screen: S, parent: EditablePanel<*>?, x: Float = 0f, @@ -385,7 +389,7 @@ open class LargeRectangleButtonPanel>( } } -open class LargeEnumRectangleButtonPanel, T : Enum>( +open class LargeEnumRectangleButtonPanel>( screen: S, parent: EditablePanel<*>?, x: Float = 0f, @@ -407,7 +411,7 @@ open class LargeEnumRectangleButtonPanel, T : } } -open class SmallRectangleButtonPanel>( +open class SmallRectangleButtonPanel( screen: S, parent: EditablePanel<*>?, x: Float = 0f, @@ -438,7 +442,7 @@ open class SmallRectangleButtonPanel>( } } -open class SmallEnumRectangleButtonPanel, T : Enum>( +open class SmallEnumRectangleButtonPanel>( screen: S, parent: EditablePanel<*>?, x: Float = 0f, diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/panels/DiscreteScrollBarPanel.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/panels/DiscreteScrollBarPanel.kt index 31b18b3d3..07a7598cb 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/panels/DiscreteScrollBarPanel.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/panels/DiscreteScrollBarPanel.kt @@ -95,13 +95,7 @@ open class DiscreteScrollBarPanel @JvmOverloads constructor( return } - val newValue = if (value < 0) { - 0 - } else if (value > maxScroll.invoke(this)) { - maxScroll.invoke(this) - } else { - value - } + val newValue = value.coerceAtLeast(0).coerceAtMost(maxScroll.invoke(this)) if (newValue != field) { val old = field diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/panels/HeightControls.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/panels/HeightControls.kt new file mode 100644 index 000000000..23e4c781b --- /dev/null +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/panels/HeightControls.kt @@ -0,0 +1,79 @@ +package ru.dbotthepony.mc.otm.client.screen.panels + +import com.mojang.blaze3d.platform.InputConstants +import net.minecraft.client.gui.screens.Screen +import ru.dbotthepony.mc.otm.client.render.SkinElement +import ru.dbotthepony.mc.otm.client.render.Widgets + +open class HeightControls( + screen: S, + parent: EditablePanel<*>?, + x: Float = 0f, + y: Float = 0f, + val callback: (isIncrease: Boolean) -> Status +) : BackgroundPanel(screen, parent, x, y, WIDTH, HEIGHT) { + enum class Status(val canIncrease: Boolean, val canDecrease: Boolean) { + NONE(false, false), + INCREASE(true, false), + DECREASE(false, true), + EITHER(true, true); + + companion object { + fun of(canIncrease: Boolean, canDecrease: Boolean): Status { + return if (canIncrease && canDecrease) { + EITHER + } else if (canIncrease) { + INCREASE + } else if (canDecrease) { + DECREASE + } else { + NONE + } + } + } + } + + var controlStatus: Status = Status.EITHER + set(value) { + if (field == value) + return + + field = value + increase.isDisabled = !value.canIncrease + decrease.isDisabled = !value.canDecrease + } + + open inner class Control(val isIncrease: Boolean) : RectangleButtonPanel(screen, this@HeightControls, width = BUTTON_WIDTH, height = BUTTON_HEIGHT) { + override val PRESSED: SkinElement = if (isIncrease) Widgets.ARROW_DOWN_BUTTON_PRESSED else Widgets.ARROW_UP_BUTTON_PRESSED + override val HOVERED: SkinElement = if (isIncrease) Widgets.ARROW_DOWN_BUTTON_HOVERED else Widgets.ARROW_UP_BUTTON_HOVERED + override val IDLE: SkinElement = if (isIncrease) Widgets.ARROW_DOWN_BUTTON_IDLE else Widgets.ARROW_UP_BUTTON_IDLE + override val DISABLED: SkinElement = if (isIncrease) Widgets.ARROW_DOWN_BUTTON_DISABLED else Widgets.ARROW_UP_BUTTON_DISABLED + + init { + dock = Dock.TOP + dockBottom = 2f + } + + override fun onClick(clickButton: Int) { + if (clickButton == InputConstants.MOUSE_BUTTON_LEFT) { + this@HeightControls.onClick(isIncrease) + } else if (clickButton == InputConstants.MOUSE_BUTTON_RIGHT) { + this@HeightControls.onClick(!isIncrease) + } + } + } + + val decrease = Control(false) + val increase = Control(true) + + open fun onClick(isIncrease: Boolean) { + controlStatus = callback.invoke(isIncrease) + } + + companion object { + const val BUTTON_WIDTH = 18f + const val BUTTON_HEIGHT = 6f + const val WIDTH = BUTTON_WIDTH + 4f + const val HEIGHT = BUTTON_HEIGHT * 2f + 8f + } +} diff --git a/src/main/resources/assets/overdrive_that_matters/textures/gui/widgets.png b/src/main/resources/assets/overdrive_that_matters/textures/gui/widgets.png index 97c810a1d..78b52f14e 100644 Binary files a/src/main/resources/assets/overdrive_that_matters/textures/gui/widgets.png and b/src/main/resources/assets/overdrive_that_matters/textures/gui/widgets.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/gui/widgets.xcf b/src/main/resources/assets/overdrive_that_matters/textures/gui/widgets.xcf index 1048cb96b..6e9c51aa9 100644 --- a/src/main/resources/assets/overdrive_that_matters/textures/gui/widgets.xcf +++ b/src/main/resources/assets/overdrive_that_matters/textures/gui/widgets.xcf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d1107b9cc8a1a50c4a167b9c8926ed9780a42280eaa97f8ae431f22ff9f34129 -size 53271 +oid sha256:855cbab0d60bb6bb8f606a07e47054aec1e3a493a0976cdb31a5518042656280 +size 55647