Browse Search Popular Register Upload Rules User list Login:
Search:
Based Crib Chamber PART 1

Image:
screenshot of the scene

Author: Xrel

Group: Default

Filesize: 110.62 kB

Date added: 2023-04-17

Rating: 5

Downloads: 231

Views: 94

Comments: 1

Ratings: 1

Times favored: 0

Made with: Algodoo v2.1.0

Tags:

Scene tag

Welcome to the chamber
Last edited at 2023/04/17 03:03:24 by Xrel
Please log in to rate this scene
edit
Similar scenes
Title: Based crib chamber
Rating: 5
Filesize: 102.84 kB
Downloads: 187
Comments: 0
Ratings: 1
Date added: 2023/04/15 18:58:08
Made with: Algodoo v2.1.0
Rating: rated 5
download
Title: Shotgun
Rating: 5
Filesize: 1.6 MB
Downloads: 2079
Comments: 0
Ratings: 1
Date added: 2014/02/26 04:42:34
Made with: Algodoo v2.1.0
Rating: rated 5
download
Title: Caseless Ammunition Prototype Rifle
Rating: 5.625
Filesize: 87.62 kB
Downloads: 2470
Comments: 0
Ratings: 2
Date added: 2020/09/12 00:49:47
Made with: Algodoo v2.1.0
Rating: rated 5.6
download
Title: Chamber of Blood
Rating: 6.8333
Filesize: 468.09 kB
Downloads: 656
Comments: 4
Ratings: 6
Date added: 2008/09/23 03:47:33
Made with: Phun
Rating: rated 6.8
download
Title: The Torture Chamber... the second
Rating: 5.625
Filesize: 0.68 MB
Downloads: 2643
Comments: 0
Ratings: 2
Date added: 2010/11/03 21:14:43
Made with: Phun
Rating: rated 5.6
download
Title: Tri-cilincer liquid engine
Rating: 5.8889
Filesize: 62.45 kB
Downloads: 1378
Comments: 0
Ratings: 3
Date added: 2009/03/26 16:46:31
Made with: Phun
Rating: rated 5.9
download
Xrel -- I noticed that the textures do not shrink along with the size of the box's when hit by the laser. That can be fixed by adding a little something to the textureMatrix. Here is a standard textureMatrix = [1.0, 0.0, 0.5, 0.0, 1.0, 0.5, 0.0, 0.0, 1.0]. If you add two simple calculations, then the size of the texture will increase or decrease with the size of the box. You need to modify elements 0 and 4 of the textureMatrix array like this:

textureMatrix = {[1/size(0), 0.0, 0.5, 0.0, 1/size(1), 0.5, 0.0, 0.0, 1.0]}

Make sure to include the beginning and ending squiggly brackets as shown here.

This can also be done with circles but it's slightly different because a circle size is determined by its radius. So it will look like this:

textureMatrix = {[1/radius, 0.0, 0.5, 0.0, 1/radius, 0.5, 0.0, 0.0, 1.0]}
Last edited at 2023/04/18 00:49:25 by Xray