2019-11-23 22:17:37 +01:00
|
|
|
package com.simibubi.create;
|
|
|
|
|
2020-01-13 20:23:44 +01:00
|
|
|
import com.simibubi.create.foundation.block.render.SpriteShifter;
|
2019-11-23 22:17:37 +01:00
|
|
|
|
|
|
|
import net.minecraft.client.resources.ReloadListener;
|
|
|
|
import net.minecraft.profiler.IProfiler;
|
|
|
|
import net.minecraft.resources.IResourceManager;
|
|
|
|
|
|
|
|
public class ResourceReloadHandler extends ReloadListener<String> {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected String prepare(IResourceManager resourceManagerIn, IProfiler profilerIn) {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void apply(String splashList, IResourceManager resourceManagerIn, IProfiler profilerIn) {
|
|
|
|
SpriteShifter.reloadUVs();
|
|
|
|
CreateClient.bufferCache.invalidate();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|