Gui Elements added to Simphy

SimPHY now supports its own gui elements which respond to their associated events through scripts.
Ex.
Button: allows user to write script on its onClick() event. for example

function button_onclick(){
    var disc = world.addDisc(0.3)
}

adds disc of radius 0.3 at origin whenever button is pressed.

Read more

Scripting added to SimPHY

The long awaited feature finally makes its place in simphy. Now it includes scripting support on world events

like onStart, onStop, onUpdate  or there is a collision between objects etc.

SimPHY is now more power-full and more robust

SimPHY supports javascript syntax for scripting. All the objects and joints created are available as javascript variables to deal with.

Read more