@tomiaa/live2d
Version:
24 lines (23 loc) • 438 B
JavaScript
class i {
/**
* 获取 JS 基础 URL
*/
static getJsBaseURL(e) {
return e || "https://tomiaa12.github.io/live2d/public";
}
/**
* 获取 Live2D 2 模型基础 URL
*/
static getLive2d_2_ModelBaseURL(e, t) {
return e || this.getJsBaseURL(t);
}
/**
* 获取 Live2D 3 模型基础 URL
*/
static getLive2d_3_ModelBaseURL(e, t) {
return e || this.getJsBaseURL(t);
}
}
export {
i as URLHelper
};