Browse Search Popular Register Upload Rules User list Login:
Search:
Xok Growth Testing

Image:
screenshot of the scene

Author: AlgoScience

Group: Default

Filesize: 58.2 kB

Date added: 2024-08-16

Rating: 5

Downloads: 1618

Views: 349

Comments: 6

Ratings: 1

Times favored: 0

Made with: Algodoo v2.1.0

Tags:

Scene tag

in this scene, we have modified a Xok's DNA to make it able to grow by frequeny colliding
but i intented for the Xok to only grow on the material "Agar" but it grew anyway on any surface it touched
is there a way to make it continusly grow or able to only grow with touching the "Agar" material
the agar in this peri dish is engineered to grow xoks much faster

help and suggestions are accepted
Please log in to rate this scene
edit
Similar scenes
Title: Exponential Growth
Rating: 5.625
Filesize: 78.52 kB
Downloads: 1833
Comments: 12
Ratings: 2
Date added: 2024/12/07 19:04:19
Made with: Algodoo v2.2.2
Rating: rated 5.6
download
Title: Shrink ray+
Rating: 5
Filesize: 178.85 kB
Downloads: 3160
Comments: 3
Ratings: 1
Date added: 2018/11/16 15:41:12
Made with: Algodoo v2.1.0
Rating: rated 5
download
Title: [CRASH WARNING] Evolution: Color-coded Competition
Rating: 5
Filesize: 6.49 kB
Downloads: 2658
Comments: 1
Ratings: 1
Date added: 2021/07/26 23:16:36
Made with: Algodoo v2.1.0
Rating: rated 5
download
Title: oh noes
Rating: 2.8125
Filesize: 248.63 kB
Downloads: 926
Comments: 107
Ratings: 16
Date added: 2008/06/01 00:10:47
Made with: Phun
Rating: rated 2.8
download
Title: An example of plant growth
Rating: 5
Filesize: 36.66 kB
Downloads: 361
Comments: 1
Ratings: 1
Date added: 2024/12/08 21:41:03
Made with: Algodoo v2.2.2
Rating: rated 5
download
Title: Testing Christer's dyno!
Rating: 5
Filesize: 99.49 kB
Downloads: 781
Comments: 2
Ratings: 1
Date added: 2015/06/13 02:56:36
Made with: Algodoo v2.1.0
Rating: rated 5
download
do you wanna join my contest?? not alot of people are joining and it's my first contest
not sure if you've already done this but (e)=>{e.other.materialName == "Agar" ? {radius = radius + 0.01} : {}}
already have
wait nevermind it worked, thank you for your help rarescratch2
wait nevermind the same thing is happening again
This is my idea: First, convert the materialName of the surface that the organism touches to lowercase. If the lowercase version equals 'agar', then it will grow; otherwise, it will do nothing.

The code above requires the first letter to be capitalized exactly as 'Agar', but if it encounters 'AGAR' in all uppercase or 'agar' in all lowercase, this organism just doesn't know what to do.

Currently I constructed this:

[tt]
(e)=>{
e.other.materialName == "Agar" ? {
radius = radius + 0.01
} : {};
radius >= 0.5 ? {
radius = 0.25;
Scene.cloneEntityTo(e.this, [pos(0), pos(1)])
} : {}
}
[/tt]
Last edited at 2026/08/01 10:11:11 by P11234567899D