Browse Search Popular Register Upload Rules User list Login:
Search:
Really cool, I like it!
Great fun to play, well done!
That's just wrong;)
This is just awesome. I didn't realize Thyme was this powerful, nor that there where Thyme coders this skilled. Kilinich: you never cease to amaze me! :tup:
One of my all-time favorite scenes
I absolutely love it! :o
The red knight was a mighty tough boss... _o_
Oops, I should probably have made it with Algodoo 1.7.1 instead of 1.7.3...
Thanks - this will be fixed in 1.7.4
This will be fixed in 1.7.4.
BTW - this only affects springs with legacyMode<2 (see script menu for spring)
The reason behind this is that the code "colorHSVA := {[(system.time * 100), 1, 1, 1]}" does it lookup to find "system.time" through the now dead object (since it was the parent), thereby not finding "system.time". This is due to how Thyme works, and is not very easy to just "fix".

However, in 1.7.4 I will be introducing the Thyme function "geval" - like eval, but everything in it will be evaluated in the global scope - ie NOT through the dead parent. All you need to do is rewrite the function from this:

(e)=>{
Scene.addcircle({colorHSVA := {[(system.time * 100), 1, 1, 1]}});
sim.running = false
}

to this:

(e)=>{
geval("Scene.addcircle({colorHSVA := {[(system.time * 100), 1, 1, 1]}})");
sim.running = false
}
This will be fixed in 1.7.4
The problem is that the springs are so strong that whenever the bottom circle looses touch with the top circle-shaped polygon (and they will loose touch, since it is a polygon, and not a perfect circle), the spring will in one time-step catapult it down a huge amount.

Either lower the spring strength, or transform the polygon to a circle. Or twiddle with Sim.targetPenetration.
Wow... just wow. Probably the best game for Algodoo yet!
Really nice
Made me thirsty
Yeah, that was me writing that:)
Oops, I accidently replaced your scene from inside Algodoo... oh well, at least you see that I'm working on it:D
http://www.algodoo.com/wiki/Algodoo_beta
Your script assignes the same body to all spawned boxes, which means they move as one. Just omit the "body" attribute to get a new body. In fact, what you probably want is something short and nice like:

(e)=>{
Scene.addBox({
pos := [1.5, 3.5];
color := [1, 1, 0.5, 1]
})
}