9 lines
226 B
TypeScript
9 lines
226 B
TypeScript
import * as THREE from "three/webgpu";
|
|
import {get} from "lodash-es";
|
|
|
|
export const isPointLightHelper = (value: unknown): value is THREE.PointLightHelper => {
|
|
return get(value, 'isPointLightHelper') === true;
|
|
}
|
|
|
|
|
|
|