mirror of
https://github.com/Buriburizaem0n/live2d.git
synced 2026-02-04 03:20:02 +00:00
精简时间判断代码
This commit is contained in:
@@ -206,8 +206,8 @@ function loadWidget() {
|
||||
modelTexturesId = localStorage.getItem("modelTexturesId");
|
||||
if (modelId === null) {
|
||||
// 首次访问加载 指定模型 的 指定材质
|
||||
const now = new Date();
|
||||
if(now.getHours()>=20 || now.getHours()<8){
|
||||
const hour = new Date().getHours();
|
||||
if(hour>=20 || hour<8){
|
||||
modelId = 1; // 夜间模型ID
|
||||
}else{
|
||||
modelId = 0; // 白天模型ID
|
||||
|
||||
Reference in New Issue
Block a user