Wallpaper Engine:壁纸引擎

Wallpaper Engine:壁纸引擎

Anime Time/Calendar/Audio [ENGLISH]
Pitou 2022 年 8 月 22 日 上午 6:03
Phone text fix
I spent a few hours trying to find a fix for this and this worked.

For phone text fix:
- Right-click the wallpaper in the wallpaper engine and click "Open in Explorer"
- Right-click on bb.html and open it with any text editor
- Ctrl+F and paste this "phoneText.sort"
- Find a line with this text "phoneText = phoneText.sort((a, b) => a.time < b.time)"
- Replace that line with this "phoneText = phoneText.sort(function(a, b) {return b.time-a.time;})"
- Save the file

That should fix the phone text problem. I also manage to remove the second from the clock, make the calendar start with Monday, and lower PC and phone brightness. This is what my wallpaper looks like now https://imgur.com/a/yo2Aacv

Let me know if you want to see any more changes. I will try my best with my little coding knowledge to make it work.
最后由 Pitou 编辑于; 2022 年 8 月 22 日 上午 7:16
< >
正在显示第 1 - 5 条,共 5 条留言
wubwub 2022 年 9 月 1 日 上午 4:30 
yeah a couple of things, how did you change the brightness of the phone and change the image of the illustrated computer
WEEBSINGH 2022 年 9 月 26 日 下午 12:28 
Yup can't change the display background
Pitou 2022 年 9 月 26 日 下午 10:32 
引用自 totsuげき
yeah a couple of things, how did you change the brightness of the phone and change the image of the illustrated computer
in bb.html there are a bunch of code. search for "screenlight" and find this statement

if (lightColor.a > 0) {
ctx.globalAlpha = lightColor.a / 1.5;
ctx.drawImage(screenLight, 0, 0);
ctx.globalAlpha = 1;
}

change the "lightColor.a / x" to higher number and it will lower the brightness.
A few lines about those code, u can see these

ctx.globalAlpha = lightColor.a / 1.5;
ctx.drawImage(phoneLight, 860, 437);
ctx.globalAlpha = 1;

do the same as u did for screenLight
最后由 Pitou 编辑于; 2022 年 9 月 26 日 下午 10:33
Pitou 2022 年 9 月 26 日 下午 10:34 
引用自 weebsingh
Yup can't change the display background
there is literally an option for it in the wallpaper setting
https://imgur.com/a/16UY3kV
最后由 Pitou 编辑于; 2022 年 9 月 26 日 下午 10:36
Hade 2023 年 11 月 8 日 下午 10:29 
Another fix for those who are too lazy to code is to just put the time in backward since it takes the first time that it passes, so something like this would work:
19:Night, 18:Dusk, 13:Afternoon, 12:Noon,7:Late Morning, 6:Dawn, 1:Early Morning, 0:Midnight
< >
正在显示第 1 - 5 条,共 5 条留言
每页显示数: 1530 50