UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

17 lines (14 loc) 288 B
import { BVHQuery } from "./BVHQuery.js"; /** * Accept any node */ export class BVHQueryAny extends BVHQuery { evaluate(node, tree) { return true; } /** * @readonly * @type {BVHQueryAny} */ static INSTANCE = new BVHQueryAny(); }