Wallpaper Engine

Wallpaper Engine

Academy City - To Aru Majutsu no Index
13 Comments
Darex 15 Sep, 2024 @ 8:56am 
Awesome wallpaper but I don't see how it's got a dynamic resolution to it. Seems like a fixed 16:9 wallpaper.
Deadpoolant 25 Sep, 2023 @ 7:36am 
I loved, i need 3440*1440 PLISSSS
nice walpaper
Orbit 14 May, 2023 @ 11:46am 
beautiful Wallpaper :steamthumbsup:
diecicatorce 5 Aug, 2022 @ 5:53pm 
Is there any possiblity you add a speed slider to slow down the videos? It goes way too fast
MaûllidØs 30 Jul, 2021 @ 4:49pm 
song?:(
冲国白毛控仙人 13 Jul, 2021 @ 11:08am 
nice:steamthumbsup:
Czin 9 Jun, 2021 @ 9:07am 
Really sick, this is by far the best To Aru wallpaper I have ever seen and I'm so damn happy with it, awesome job :steamthumbsup:
SafetyMoose 30 May, 2021 @ 8:27am 
This is a great wallpaper. I have always wanted a city landscape like this that adjusted to the real time of day. I hope you will make more that are similar to this.
Horu 28 May, 2021 @ 7:39am 
can you do this in 60 fps?
Scouty Official 7 May, 2021 @ 1:07pm 
Can't reply to comments in workshop posts? That's silly, anyway, you're welcome! That is a much nicer solution than mine lol, it's been a while since I last used JS haha.

I did notice that your original statement should have made sense, but I didn't think that it may have been an issue with using currentTime instead of currentHour, Glad I could help!
RedMagic  [author] 7 May, 2021 @ 6:41am 
Thank you for reporting the problem. The bug has been fixed.

I just messed up the variable names :) The correct code is:

if(currentHour >= morningStarts && currentHour < dayStarts){
showDayPart(DayPart.Morning);
}
Scouty Official 6 May, 2021 @ 11:16pm 
Update to my below comment:

I modified the If arguments to start with this and it seemed to have done the trick, of course I may have broken the code but I guess I'll find out in the morning. I would recommend @RedMagic update the code to follow this for those who are night owls and occasionally restart their PC after midnight:

if(currentTime <= morningStarts && currentHour < morningStarts){
showDayPart(DayPart.night);
} else if (currentHour >= morningStarts && currentHour < dayStarts){
showDayPart(DayPart.Morning);
Scouty Official 6 May, 2021 @ 11:11pm 
For some weird reason, my day cycle seems to be weird in the auto switch. For example, it is 2AM here, but the morning visual is playing instead of the night visual? Any help with the settings?

could be as simple as modifying the if-else statements or the way the script grabs the time. IE since the night cycle starts late, and its technically early, its defaulting to morning instead of night any tips would be appreciated though!