admin管理员组文章数量:1352179
I want to render custom HTML elements as Bodies in Matter.js. I am using it in React which adds a bit of plexity but it's irrelevant to my issue.
I've searched a lot and the only example I found was this one here, which seems to use querySelector
to select the elements that live in the HTML code then somehow use them inside the rectangle shapes.
The part that seems to be doing the job is the following:
var bodiesDom = document.querySelectorAll('.block');
var bodies = [];
for (var i = 0, l = bodiesDom.length; i < l; i++) {
var body = Bodies.rectangle(
VIEW.centerX,
20,
VIEW.width*bodiesDom[i].offsetWidth/window.innerWidth,
VIEW.height*bodiesDom[i].offsetHeight/window.innerHeight
);
bodiesDom[i].id = body.id;
bodies.push(body);
}
World.add(engine.world, bodies);
(the VIEW
variables there could be just random numbers as they define the shape)
However, I cannot understand how to pass an HTML element inside the Bodies rectangle as in the example above.
Ideally, I want to have plex HTML elements interacting with the physics world (like a small box with buttons, etc).
Any ideas on how this could be achieved? Or, can you explain the method used in the example that seems to have managed it?
I want to render custom HTML elements as Bodies in Matter.js. I am using it in React which adds a bit of plexity but it's irrelevant to my issue.
I've searched a lot and the only example I found was this one here, which seems to use querySelector
to select the elements that live in the HTML code then somehow use them inside the rectangle shapes.
The part that seems to be doing the job is the following:
var bodiesDom = document.querySelectorAll('.block');
var bodies = [];
for (var i = 0, l = bodiesDom.length; i < l; i++) {
var body = Bodies.rectangle(
VIEW.centerX,
20,
VIEW.width*bodiesDom[i].offsetWidth/window.innerWidth,
VIEW.height*bodiesDom[i].offsetHeight/window.innerHeight
);
bodiesDom[i].id = body.id;
bodies.push(body);
}
World.add(engine.world, bodies);
(the VIEW
variables there could be just random numbers as they define the shape)
However, I cannot understand how to pass an HTML element inside the Bodies rectangle as in the example above.
Ideally, I want to have plex HTML elements interacting with the physics world (like a small box with buttons, etc).
Any ideas on how this could be achieved? Or, can you explain the method used in the example that seems to have managed it?
Share Improve this question edited Dec 18, 2020 at 9:12 ggorlen 57.9k8 gold badges114 silver badges157 bronze badges asked Sep 15, 2020 at 16:31 WaelmasWaelmas 1,9621 gold badge14 silver badges21 bronze badges1 Answer
Reset to default 11However, I cannot understand how to pass an HTML element inside the Bodies rectangle as in the example above.
This isn't quite what the example does. When running headlessly, Matter.js handles the physics without having any idea how it's rendered. Per animation frame, you can use the current positions of the MJS bodies and reposition your elements (or draw on canvas, etc) to reflect MJS's view of the world.
Providing a root element to MJS does seem to break the one-way data flow, but this is only for informing MJS about events like mouse position and clicks--not to be confused with rendering.
Here's a minimal example to hopefully make this clearer:
const engine = Matter.Engine.create();
const box = {
body: Matter.Bodies.rectangle(150, 0, 40, 40),
elem: document.querySelector("#box"),
render() {
const {x, y} = this.body.position;
this.elem.style.top = `${y - 20}px`;
this.elem.style.left = `${x - 20}px`;
this.elem.style.transform = `rotate(${this.body.angle}rad)`;
},
};
const ground = Matter.Bodies.rectangle(
200, 200, 400, 120, {isStatic: true}
);
const mouseConstraint = Matter.MouseConstraint.create(
engine, {element: document.body}
);
Matter.Composite.add(
engine.world, [box.body, ground, mouseConstraint]
);
(function rerender() {
box.render();
Matter.Engine.update(engine);
requestAnimationFrame(rerender);
})();
#box {
position: absolute;
background: #111;
height: 40px;
width: 40px;
cursor: move;
}
#ground {
position: absolute;
background: #666;
top: 140px;
height: 120px;
width: 400px;
}
html, body {
position: relative;
height: 100%;
margin: 0;
}
<script src="https://cdnjs.cloudflare./ajax/libs/matter-js/0.20.0/matter.min.js"></script>
<div id="box"></div>
<div id="ground"></div>
React
React changes the workflow but the fundamental concept is the same--MJS body data flows one-directionally from the MJS back-end to the rendering front-end, so from MJS' perspective, everything is identical as the vanilla example above. Most of the work is setting up refs and useEffect
properly for use with requestAnimationFrame
.
const {Fragment, useEffect, useRef} = React;
const Scene = () => {
const requestRef = useRef();
const boxRef = useRef();
const groundRef = useRef();
const engineRef = useRef();
const animate = () => {
engineRef.current = Matter.Engine.create();
const engine = engineRef.current;
const box = {
body: Matter.Bodies.rectangle(150, 0, 40, 40),
elem: boxRef.current,
render() {
const {x, y} = this.body.position;
this.elem.style.top = `${y - 20}px`;
this.elem.style.left = `${x - 20}px`;
this.elem.style.transform = `rotate(${this.body.angle}rad)`;
},
};
const ground = Matter.Bodies.rectangle(
200, // x
200, // y
400, // w
120, // h
{isStatic: true}
);
const mouseConstraint = Matter.MouseConstraint.create(
engine,
{element: document.body}
);
Matter.Composite.add(engine.world, [
box.body,
ground,
mouseConstraint,
]);
(function rerender() {
box.render();
Matter.Engine.update(engine);
requestRef.current = requestAnimationFrame(rerender);
})();
};
useEffect(() => {
animate();
return () => {
cancelAnimationFrame(requestRef.current);
Matter.Engine.clear(engineRef.current);
// see https://github./liabru/matter-js/issues/564
// for additional cleanup if using MJS renderer/runner
};
}, []);
return (
<Fragment>
<div id="box" ref={boxRef}></div>
<div id="ground" ref={groundRef}></div>
</Fragment>
);
};
ReactDOM.createRoot(document.querySelector("#app")).render(
<Scene />
);
#box {
position: absolute;
background: #111;
height: 40px;
width: 40px;
cursor: move;
}
#ground {
position: absolute;
top: 140px;
height: 120px;
width: 400px;
background: #666;
}
html, body {
position: relative;
height: 100%;
margin: 0;
}
<script crossorigin src="https://unpkg./react@18/umd/react.development.js"></script>
<script crossorigin src="https://unpkg./react-dom@18/umd/react-dom.development.js"></script>
<script src="https://cdnjs.cloudflare./ajax/libs/matter-js/0.20.0/matter.min.js"></script>
<div id="app"></div>
Note that these are only proofs-of-concept. More work setting up abstractions will likely be necessary before they can support more involved use cases.
本文标签: javascriptUsing Matterjs to render to the DOM or ReactStack Overflow
版权声明:本文标题:javascript - Using Matter.js to render to the DOM or React - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743909869a2560195.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论