Wallpaper Engine

Wallpaper Engine

View Stats:
smicre Nov 8, 2020 @ 12:17pm
Can you have multiple images on custom wallpaper?
I'm trying to make my wallpaper I made transition to another image for like 1 minute then go back to the original image is there anyway to do this??
< >
Showing 1-4 of 4 comments
Biohazard  [developer] Nov 8, 2020 @ 12:36pm 
This is possible, but it sounds like you want to have two wallpapers in a slideshow and not really an animated wallpaper? Can you describe a bit more in detail what you want to do?
Rhy Nov 8, 2020 @ 1:39pm 
In case you are actually making a moving wallpaper and not just a slideshow, you could try it with a script.

gear icon on a property->bind script

'use strict'; //DO NOT BIND TO PROPERTY "VISIBLE" var layers = ["red"]; // Replace with your layer names or add more if needed var interval = 60; //Set the interval you want your layers to disappear. var cachedLayers=[]; var time =0; var index = 0; export function update(value) { if(time>interval){ if(index < layers.length){ if(cachedLayers[index].alpha >0){ cachedLayers[index].alpha-=0.1; }else if(cachedLayers[index].alpha <=0){ cachedLayers[index].visible = false; index++; time = 0; } } else{ if(cachedLayers[0].alpha <1){ cachedLayers[0].visible = true; cachedLayers[0].alpha +=0.1; } else{ cachedLayers.forEach(element=> element.visible=true ); cachedLayers.forEach(element=> element.alpha = 1 ); index = 0; time = 0; } } } time+=engine.frametime; return value; } //Cache layers for quicker access export function init(value) { layers.forEach( element=> cachedLayers.push(thisScene.getLayer(element))); return value; }

Replace the layer at the top with the name of your layer. This script will wait for the time defined at the top (60 seconds in this example) and fade out. it will fade back in after 60 seconds have passed.


An alternate (and more recent) method would be to use keyframes.

Sign into the Beta of WE by right clicking on it in the library, select properties, and move to the Betas tab. After downloading the Beta version, you can click on the gear Icon of the "Opacity" property and select Animation. There you can select "Mirror" and set keyframes as wished.


However if this is not what you want, please specify as Bio stated above.
Last edited by Rhy; Nov 8, 2020 @ 1:54pm
smicre Nov 9, 2020 @ 9:59am 
I will try the script and yes I animated a picture I took with like camera shake and a little bit of effects and just wanted it to go to another picture that I will animate. Thank you guys for the answers

Originally posted by Biohazard:
This is possible, but it sounds like you want to have two wallpapers in a slideshow and not really an animated wallpaper? Can you describe a bit more in detail what you want to do?
V Nov 27, 2020 @ 7:35am 
How to use the Script for 6 images and Which layer should be Binded ?
< >
Showing 1-4 of 4 comments
Per page: 1530 50

Date Posted: Nov 8, 2020 @ 12:17pm
Posts: 4