forked from MinecraftUtilities/Backend
cache the skin image
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
package cc.fascinated.model.player;
|
||||
|
||||
import cc.fascinated.config.Config;
|
||||
import cc.fascinated.util.PlayerUtils;
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import com.google.gson.JsonObject;
|
||||
import lombok.AllArgsConstructor;
|
||||
@ -28,6 +29,11 @@ public class Skin {
|
||||
*/
|
||||
private final Model model;
|
||||
|
||||
/**
|
||||
* The skin data of the skin
|
||||
*/
|
||||
private final byte[] skinData;
|
||||
|
||||
/**
|
||||
* The part URLs of the skin
|
||||
*/
|
||||
@ -37,6 +43,8 @@ public class Skin {
|
||||
public Skin(String url, Model model) {
|
||||
this.url = url;
|
||||
this.model = model;
|
||||
|
||||
this.skinData = PlayerUtils.getSkinData(url);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user