How to create a slow motion effect

Is it possible in Corona to find a way to create a slow motion effect where everything is slowed down, including physics, linearVelocities, forces, etc?

I think you can achieve a slowmotion effect with the physics.setTimeStep(deltaTime) call.

Try this:

​-- Set timestep to update 120 times per sec. This will slow physics animations down. physics.setTimeStep(1/120) -- To return to default timestep use this physics.setTimeStep(-1)

I think you can achieve a slowmotion effect with the physics.setTimeStep(deltaTime) call.

Try this:

​-- Set timestep to update 120 times per sec. This will slow physics animations down. physics.setTimeStep(1/120) -- To return to default timestep use this physics.setTimeStep(-1)