<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://pixijs.download/v7.0.5/pixi.min.js"></script>
<script src="https://unpkg.com/three@0.142.x/build/three.min.js"></script>
<script src="https://unpkg.com/xnew@2.3.x/dist/xnew.js"></script>
<script src="https://unpkg.com/xnew@2.3.x/dist/addons/xpixi.js"></script>
<script src="https://unpkg.com/xnew@2.3.x/dist/addons/xthree.js"></script>
<style>
body {
margin: 0;
height: 100vh;
}
</style>
</head>
<body>
<div id="main" style="width: 100%; height: 100%;"></div>
<script>
xnew('#main', (self) => {
const screen = xnew(xnew.Screen, { width: 800, height: 400 });
const oscanvas = new OffscreenCanvas(800, 400);
const three = xthree.setup({ renderer: new THREE.WebGLRenderer({ canvas: oscanvas }) });
three.camera.position.set(0, 0, +100);
xnew(Cubes);
const pixi = xpixi.setup({
renderer: PIXI.autoDetectRenderer({
width: screen.canvas.width, height: screen.canvas.height, view: screen.canvas
})
});
xnew(ThreeTexture, PIXI.Texture.from(oscanvas));
xnew(Boxes);
});
function ThreeTexture(self, texture) {
const object = xpixi.nest(new PIXI.Sprite(texture));
return {
update() {
object.texture.update()
},
};
}
function Boxes(self) {
const object = xpixi.nest(new PIXI.Container());
object.position.set(800 / 2, 400 / 2);
for (let y = -1; y <= 1; y++) {
for (let x = -1; x <= 1; x++) {
xnew(Box, { x: 80 * x, y: 80 * y, size: 40, color: 0xEA1E63 });
}
}
return {
update() {
object.rotation += 0.01;
},
};
}
function Box(self, { x, y, size, color }) {
const object = xpixi.nest(new PIXI.Container());
object.x = x;
object.y = y;
const graphics = new PIXI.Graphics();
object.addChild(graphics);
graphics.beginFill(color);
graphics.drawRect(-size / 2, -size / 2, size, size);
graphics.endFill();
return {
update() {
object.rotation += 0.01;
},
};
}
function Cubes(self) {
const object = xthree.nest(new THREE.Object3D());
for (let z = -1; z <= 1; z++) {
for (let y = -1; y <= 1; y++) {
for (let x = -1; x <= 1; x++) {
xnew(Cube, { x: 15 * x, y: 15 * y, z: 15 * z, size: 6 });
}
}
}
return {
update() {
object.rotation.y += 0.01;
object.rotation.z += 0.01;
},
};
}
function Cube(self, { x, y, z, size }) {
const geometry = new THREE.BoxGeometry(size, size, size);
const material = new THREE.MeshNormalMaterial();
const object = xthree.nest(new THREE.Mesh(geometry, material));
object.position.set(x, y, z);
return {
update() {
object.rotation.x += 0.01;
object.rotation.y += 0.01;
},
};
}
</script>
</body>
</html>