Browse Search Popular Register Upload Rules User list Login:
Search:
Something Unuseful 50 + 1

Image:
screenshot of the scene

Author: KGameX

Group: Default

Filesize: 3.56 kB

Date added: 2024-07-30

Rating: 5

Downloads: 375

Views: 143

Comments: 4

Ratings: 1

Times favored: 0

Made with: Algodoo v2.1.0

Tags:

Scene tag

I'm back, with uhh... some series that I said will not come back ?

Anyways, just enjoy this screenloader.


2024 KGameX

Please don't reupload my scenes.


Something Unuseful Series
Last edited at 2025/02/11 12:47:14 by KGameX
Please log in to rate this scene
edit
Similar scenes
Title: Something Unuseful N°33
Rating: 5.5
Filesize: 11.4 kB
Downloads: 512
Comments: 0
Ratings: 2
Date added: 2022/12/26 13:23:44
Made with: Algodoo v2.1.0
Rating: rated 5.5
download
Title: Something Unuseful XLIII
Rating: 5
Filesize: 13 kB
Downloads: 405
Comments: 0
Ratings: 1
Date added: 2023/10/15 09:25:46
Made with: Algodoo v2.1.0
Rating: rated 5
download
Title: Something Unuseful XLII
Rating: 5.5
Filesize: 13.8 kB
Downloads: 454
Comments: 0
Ratings: 2
Date added: 2023/10/14 09:29:23
Made with: Algodoo v2.1.0
Rating: rated 5.5
download
Title: Something Unuseful 8
Rating: 5
Filesize: 57.75 kB
Downloads: 537
Comments: 0
Ratings: 1
Date added: 2022/03/16 07:27:14
Made with: Algodoo v2.1.0
Rating: rated 5
download
Title: Something Unuseful N°36
Rating: 5
Filesize: 8.84 kB
Downloads: 538
Comments: 0
Ratings: 1
Date added: 2023/01/23 12:19:14
Made with: Algodoo v2.1.0
Rating: rated 5
download
Title: Something Unuseful XL
Rating: 5
Filesize: 19.88 kB
Downloads: 448
Comments: 0
Ratings: 1
Date added: 2023/10/02 08:53:15
Made with: Algodoo v2.1.0
Rating: rated 5
download
I also uploaded a useless thing.
something unuseful Season 2?
Would most likely be ugly and also very laggy, but what would 100 of these (invisible) marbles making a polygon look like?
BernatJansa - Yes, you can say it's the Season 2.


rarescratch2 - You can try do find it out by yourself ! here's the code for it to be working :

Each marble has this code :
postStep = (e)=>{
vel = 4 * rand.normal2d;
postStep = (e)=>{
scene.my.posX = pos
}
}
Where you replace the X in "posX" by a number. Be careful not to put the same number twice, or it might break the thing !

Then put this code in one of the planes to create the polygon :

postStep = (e)=>{
scene.addPolygon({
surfaces = [[scene.my.pos1, scene.my.pos2,..., scene.my.posX]];
timeToLive := 0.25000000;
collideSet := 0;
colorHSVA := {
[sim.time * 5, 1.0000000, 4 * timeToLive, 0.00000000]
}
})
}

You can ask more help if needed !