Warning, /education/gcompris/external/qml-box2d/examples/boxes/WoodenBox.qml is written in an unsupported language. File is not indexed.

0001 import QtQuick 2.0
0002 import Box2D 2.0
0003 import "../shared"
0004 
0005 ImageBoxBody {
0006     id: woodenBox
0007     source: "woodenbox.png"
0008 
0009     bodyType: Body.Dynamic
0010     world: physicsWorld
0011 
0012     density: 1
0013     friction: 0.3
0014     restitution: 0.5
0015 }