import type { Object3D } from "three";
export function checkNameIncludes(obj: Object3D, str: string): boolean {
return obj.name.includes(str);
}