chore: Inject animation and ease in config screen
This commit is contained in:
parent
5dc6372222
commit
ee13575e15
@ -149,7 +149,7 @@ public final class SmoothChunks implements ClientModInitializer, ModMenuApi {
|
|||||||
return new ConfigScreenFactory<Screen>() {
|
return new ConfigScreenFactory<Screen>() {
|
||||||
@Override
|
@Override
|
||||||
public Screen create(Screen parent) {
|
public Screen create(Screen parent) {
|
||||||
return new SmoothChunksScreen(parent);
|
return new SmoothChunksScreen(parent, animation, ease);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -9,13 +9,16 @@ import net.minecraft.text.Text;
|
|||||||
import net.minecraft.util.Formatting;
|
import net.minecraft.util.Formatting;
|
||||||
import net.minecraft.util.math.ColorHelper.Argb;
|
import net.minecraft.util.math.ColorHelper.Argb;
|
||||||
import me.topchetoeu.smoothchunks.Manager;
|
import me.topchetoeu.smoothchunks.Manager;
|
||||||
import me.topchetoeu.smoothchunks.SmoothChunks;
|
import me.topchetoeu.smoothchunks.animation.Animation;
|
||||||
|
import me.topchetoeu.smoothchunks.easing.Ease;
|
||||||
import me.topchetoeu.smoothchunks.gui.Section.OrderType;
|
import me.topchetoeu.smoothchunks.gui.Section.OrderType;
|
||||||
import net.minecraft.client.MinecraftClient;
|
import net.minecraft.client.MinecraftClient;
|
||||||
|
|
||||||
public class SmoothChunksScreen extends Screen {
|
public class SmoothChunksScreen extends Screen {
|
||||||
public final Screen parent;
|
public final Screen parent;
|
||||||
private final HorizontalSection mainSection = new HorizontalSection();
|
private final HorizontalSection mainSection = new HorizontalSection();
|
||||||
|
private final Manager<Animation> animation;
|
||||||
|
private final Manager<Ease> ease;
|
||||||
|
|
||||||
public static void playClick() {
|
public static void playClick() {
|
||||||
MinecraftClient.getInstance().getSoundManager().play(PositionedSoundInstance.master(SoundEvents.UI_BUTTON_CLICK, 1.0f));
|
MinecraftClient.getInstance().getSoundManager().play(PositionedSoundInstance.master(SoundEvents.UI_BUTTON_CLICK, 1.0f));
|
||||||
@ -95,12 +98,14 @@ public class SmoothChunksScreen extends Screen {
|
|||||||
var res = new HorizontalSection();
|
var res = new HorizontalSection();
|
||||||
res.x = res.y = 5;
|
res.x = res.y = 5;
|
||||||
res.title = Text.of("Animation config:");
|
res.title = Text.of("Animation config:");
|
||||||
res.children.addSelectableChild(selectionSection(SmoothChunks.getInstance().getAnimationManager(), "Animation"));
|
res.children.addSelectableChild(selectionSection(animation, "Animation"));
|
||||||
res.children.addSelectableChild(selectionSection(SmoothChunks.getInstance().getEaseManager(), "Ease"));
|
res.children.addSelectableChild(selectionSection(ease, "Ease"));
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
public SmoothChunksScreen(Screen parent) {
|
public SmoothChunksScreen(Screen parent, Manager<Animation> animation, Manager<Ease> ease) {
|
||||||
super(Text.of("Smooth Chunks Config"));
|
super(Text.of("Smooth Chunks Config"));
|
||||||
|
this.animation = animation;
|
||||||
|
this.ease = ease;
|
||||||
mainSection.x = mainSection.y = 5;
|
mainSection.x = mainSection.y = 5;
|
||||||
|
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
|
Loading…
Reference in New Issue
Block a user