playcanvas
Version:
PlayCanvas WebGL game engine
14 lines (13 loc) • 457 B
TypeScript
export class GSplatOctreeResource {
/**
* @param {string} assetFileUrl - The file URL of the container asset.
* @param {object} data - Parsed JSON data.
*/
constructor(assetFileUrl: string, data: object);
/** @type {BoundingBox} */
aabb: BoundingBox;
/** @type {GSplatOctree} */
octree: GSplatOctree;
}
import { BoundingBox } from '../../core/shape/bounding-box.js';
import { GSplatOctree } from './gsplat-octree.js';