admin管理员组文章数量:1344241
I'm trying to integrate a game, built with matter-js, into my existing SvelteKit webapp but am getting stumped as to why gravity is not affecting the circle body I'm adding. The following is the typescript code within my svelte file:
onMount(async () => {
const Matter = await import('matter-js');
const canvas = document.getElementById("canvas")!
const engine = Matter.Engine.create();
const ball = Matter.Bodies.circle(100, 0, 10);
Matter.Composite.add(engine.world, ball);
Matter.Engine.update(engine);
const render = Matter.Render.create({
element: canvas,
engine: engine,
})
Matter.Render.run(render);
Matter.Runner.run(engine);
})
The ball is stuck in the initial position set within the circle() method. I'm using vite for the local dev server.
I'm trying to integrate a game, built with matter-js, into my existing SvelteKit webapp but am getting stumped as to why gravity is not affecting the circle body I'm adding. The following is the typescript code within my svelte file:
onMount(async () => {
const Matter = await import('matter-js');
const canvas = document.getElementById("canvas")!
const engine = Matter.Engine.create();
const ball = Matter.Bodies.circle(100, 0, 10);
Matter.Composite.add(engine.world, ball);
Matter.Engine.update(engine);
const render = Matter.Render.create({
element: canvas,
engine: engine,
})
Matter.Render.run(render);
Matter.Runner.run(engine);
})
The ball is stuck in the initial position set within the circle() method. I'm using vite for the local dev server.
Share Improve this question edited 53 mins ago ggorlen 57.8k8 gold badges113 silver badges157 bronze badges asked 4 hours ago ClosingArcClosingArc 31 bronze badge New contributor ClosingArc is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct. 5 |1 Answer
Reset to default 0The snippet in the question isn't complete and reproducible--it's basically standard boilerplate, so I suggest providing full context (complete, runnable code). But in the meantime, I'll take a stab at a solution.
When Matter.js released 0.20, the behavior of Runner.run()
changed. In 0.19, Runner.run()
will automatically create a runner for you if one wasn't provided, but in 0.20, you need to create it yourself. No error occurs if you don't--MJS will just silently not run.
If you're using 0.19, you can use this:
const canvas = document.querySelector("div");
const engine = Matter.Engine.create();
const ball = Matter.Bodies.circle(100, 0, 50);
Matter.Composite.add(engine.world, ball);
const render = Matter.Render.create({element: canvas, engine});
Matter.Render.run(render);
Matter.Runner.run(engine);
<script src="https://cdnjs.cloudflare/ajax/libs/matter-js/0.19.0/matter.min.js"></script>
<div></div>
If you're using 0.20, you can use this, (which is also compatible with 0.19):
const canvas = document.querySelector("div");
const engine = Matter.Engine.create();
const ball = Matter.Bodies.circle(100, 0, 50);
Matter.Composite.add(engine.world, ball);
const render = Matter.Render.create({element: canvas, engine});
Matter.Render.run(render);
Matter.Runner.run(Matter.Runner.create(), engine);
// ^^^^^^^^^^^^^^^^^^^^^^^^
<script src="https://cdnjs.cloudflare/ajax/libs/matter-js/0.20.0/matter.min.js"></script>
<div></div>
To possibly reproduce your error, run the 0.19 code with 0.20 and observe that the ball is not affected by gravity (actually, the entire engine does not run).
See also: After upgrading from 0.19.0 to 0.20.0, mouse response stopped working, and gravity effect failed. #1333
Note also that document.getElementById("canvas")!
should be a container for the canvas MJS will create and inject a canvas into. If you're using your own canvas, you wouldn't need a Matter.Render
. You can also use the canvas:
property rather than element:
if you want to specify a canvas.
本文标签: javascriptMatterJS Ball Not Affected by Gravity in version 0200Stack Overflow
版权声明:本文标题:javascript - MatterJS Ball Not Affected by Gravity in version 0.20.0 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743739768a2530673.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
Matter.Runner.run(engine);
changed in 0.20.0, and other version-specific changes are possible, so we should first eliminate that factor. If Sveltekit is also using 0.17.1 and it still fails, then version is not the issue, and you'll need to provide whatever delta Sveltekit causes it to fail (probably show a full, simple component). – ggorlen Commented 1 hour ago