salary-management-oneself/src/utils/three.ts

6 lines
148 B
TypeScript
Raw Normal View History

2025-04-08 10:26:23 +08:00
import type { Object3D } from "three";
export function checkNameIncludes(obj: Object3D, str: string): boolean {
return obj.name.includes(str);
}