feat(all): init commit

This commit is contained in:
plum
2026-04-19 18:46:28 +08:00
commit 5d7f479765
479 changed files with 178500 additions and 0 deletions
@@ -0,0 +1,9 @@
import * as THREE from "three/webgpu";
import {get} from "lodash-es";
export const isCubeCamera = (value: unknown): value is THREE.CubeCamera => {
return get(value, 'isCubeCamera') === true;
}