blob: df11ac97b93addf2b4655d0319cc9c879cffdbb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
package shcm.shsupercm.fabric.citresewn.mixin;
import net.minecraft.client.color.block.BlockColors;
import net.minecraft.client.render.model.ModelLoader;
import net.minecraft.resource.ResourceManager;
import net.minecraft.util.profiler.Profiler;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.Inject;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
import shcm.shsupercm.fabric.citresewn.cit.ActiveCITs;
/**
* Initializes the (re)loading of active cits in the resource manager.
* @see ActiveCITs
*/
@Mixin(ModelLoader.class)
public class ModelLoaderMixin {
/**
* @see ActiveCITs#load(ResourceManager, Profiler)
*/
@Inject(method = "<init>", at =
@At(value = "INVOKE", ordinal = 0, target = "Lnet/minecraft/util/profiler/Profiler;push(Ljava/lang/String;)V"))
private void citresewn$loadCITs(ResourceManager resourceManager, BlockColors blockColors, Profiler profiler, int i, CallbackInfo ci) {
profiler.push("citresewn:reloading_cits");
ActiveCITs.load(resourceManager, profiler);
profiler.pop();
}
}
|