Browse Search Popular Register Upload Rules User list Login:
Search:
Screen Saver for MyNameIsThis

Image:
screenshot of the scene

Author: Xray

Group: Default

Filesize: 389.4 kB

Date added: 2021-11-13

Rating: 5.6

Downloads: 1019

Views: 482

Comments: 6

Ratings: 2

Times favored: 1

Made with: Algodoo v2.1.0

Tags:

Scene tag

Here is a simple example of a screen saver. Play around with it and see what more you can come up with!
Last edited at 2021/11/13 05:48:05 by Xray
Please log in to rate this scene
edit
Similar scenes
Title: Ultimate Screen Saver
Rating: 5
Filesize: 292 kB
Downloads: 666
Comments: 0
Ratings: 1
Date added: 2021/01/16 17:54:36
Made with: Algodoo v2.1.0
Rating: rated 5
download
Title: Windows screen saver on phun!!
Rating: 7.8125
Filesize: 6.22 kB
Downloads: 456
Comments: 6
Ratings: 16
Date added: 2008/12/01 23:35:02
Made with: Phun
Rating: rated 7.8
download
Title: screen saver
Rating: 5
Filesize: 122.62 kB
Downloads: 451
Comments: 1
Ratings: 1
Date added: 2012/12/18 23:15:22
Made with: Algodoo v2.0.2
Rating: rated 5
download
Title: DVD screen saver (mostly works)
Rating: 5
Filesize: 190.16 kB
Downloads: 387
Comments: 1
Ratings: 1
Date added: 2023/08/14 15:38:57
Made with: Algodoo before v1.8.5
Rating: rated 5
download
Title: My OlWn SCREEN SAVER 4 ! ! !
Rating: 5
Filesize: 109.98 kB
Downloads: 293
Comments: 2
Ratings: 1
Date added: 2009/01/30 19:50:46
Made with: Phun
Rating: rated 5
download
Title: Color Changing Ball
Rating: 5.6
Filesize: 10.44 kB
Downloads: 4013
Comments: 2
Ratings: 4
Date added: 2009/03/31 03:25:55
Made with: Phun
Rating: rated 5.6
download
This scene is a response to:
Title Author Rating Downloads Comments Date added
0 ( votes)
show grid
?
Thanks
Hi Xray! I was wondering, but is there a way to make a "wait" command with scripts? By that I mean that a script runs as normal, but when it reaches the "wait" it pauses for a period of time before continuing.
JP - Yes, you can write a delay that will hold off a single command or procedure for N number of seconds. I do it all the time in many of my own scenes.

I see that you have a lot of questions concerning Thyme Scripting, so I suggest that you check out the heading "Thyme Scripting" in the Algodoo Forum. There's a lot of good information there but you will have to put in the time and effort that's required to do the research.
Awesome! I usualy use timeToLive as my "wait" command, like this:
(e)=>{
timeToLive=<1?{
timeToLive=1.25;
[script here]}:{}
Although I don't know how to make it a bit shorter, something like "e.this.wait (value)" or something.
There are many different ways to make a time delay, and using timeToLive is probably the simplest.

I'm not sure what you mean by "a bit shorter". If you mean less than one second, that's easy to do. For example:

Set timeToLive = 1.0

Then where you need the delay do this:
timeToLive <= 0.25 ? {timeToLive = +inf; Do whatever you need here after delay period}:{}

NOTES: 1. You need to stop the timeToLive by setting it to infinity before it reaches zero if you don't want the geometry to die.
2. Never test for an exact time. Always use <= or >=. If you do only =, Algodoo might skip over the exact value you are waiting for and the timer will continue to run down until it times out. By using <= it ensures that the timer will stop when you need it to.

There are other ways to make timers which you can find by digging through my scenes or others that use a lot of Thyme Scripting.