mirror of
https://github.com/liabru/matter-js.git
synced 2024-11-23 09:26:51 -05:00
18 lines
No EOL
437 B
JavaScript
18 lines
No EOL
437 B
JavaScript
(function() {
|
|
|
|
var World = Matter.World,
|
|
Bodies = Matter.Bodies,
|
|
Composites = Matter.Composites;
|
|
|
|
Example.beachBalls = function(demo) {
|
|
var engine = demo.engine,
|
|
world = engine.world;
|
|
|
|
var stack = Composites.stack(0, 100, 5, 1, 20, 0, function(x, y) {
|
|
return Bodies.circle(x, y, 75, { restitution: 0.9 });
|
|
});
|
|
|
|
World.add(world, stack);
|
|
};
|
|
|
|
})(); |