import { Context, Behaviour, DeviceUtilities, GameObject, USDZExporter, delay, serializable } from "@needle-tools/engine";
import { Object3D, ShaderMaterial, Vector2, Color, Mesh, BufferGeometry, MeshBasicMaterial } from "three"
import { shaderStructs, shaderIntersectFunction, MeshBVHUniformStruct, MeshBVH, SAH } from "three-mesh-bvh";
export class Diamond extends Behaviour {
@serializable()
disableOnMobile: boolean = false;
async start() {
// If we are exporting to usdz, we need to swap the diamond for the original,
// as iOS QuickLook does not support custom shaders
const usdzExporter = GameObject.findObjectOfType(USDZExporter);
if (usdzExporter) {
usdzExporter.addEventListener("before-export", () => {
if (!this.original || !this.customDiamond) return;
this.customDiamond.parent?.add(this.original);
this.customDiamond.parent?.remove(this.customDiamond);
});
This file has been truncated. show original