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