ComponentsSimpleRopeOn this pageSimpleRopePropshttps://pixijs.download/v7.x/docs/PIXI.SimpleRope.htmlUsageResultLoading...Live Editor// import { Stage, SimpleRope } from '@pixi/react' // import { Point } from 'pixi.js' <Stage width={500} height={300} options={{ backgroundColor: 0xeef1f5 }}> <SimpleRope points={[ new Point(0, 150), new Point(100, 100), new Point(150, 150), new Point(200, 100), new Point(400, 150), ]} image={'/pixi-react/img/snake.png'} /> </Stage>// import { Stage, SimpleRope } from '@pixi/react'// import { Point } from 'pixi.js' <Stage width={500} height={300} options={{ backgroundColor: 0xeef1f5 }}> <SimpleRope points={[ new Point(0, 150), new Point(100, 100), new Point(150, 150), new Point(200, 100), new Point(400, 150), ]} image={'/pixi-react/img/snake.png'} /></Stage>Example