Create/src/main/java/com/simibubi/create/foundation/ResourceReloadHandler.java

21 lines
674 B
Java
Raw Normal View History

2020-05-23 14:02:38 +02:00
package com.simibubi.create.foundation;
2020-05-23 14:02:38 +02:00
import com.simibubi.create.CreateClient;
import com.simibubi.create.content.contraptions.goggles.IHaveGoggleInformation;
import com.simibubi.create.foundation.block.render.SpriteShifter;
import com.simibubi.create.foundation.utility.ISimpleReloadListener;
import net.minecraft.profiler.IProfiler;
import net.minecraft.resources.IResourceManager;
public class ResourceReloadHandler implements ISimpleReloadListener {
@Override
public void onReload(IResourceManager resourceManagerIn, IProfiler profilerIn) {
SpriteShifter.reloadUVs();
CreateClient.invalidateRenderers();
IHaveGoggleInformation.numberFormat.update();
}
}