cube-parameters
Version:
A sophisticated 3D model viewer built with React, TypeScript, and Three.js, featuring advanced visualization tools, measurement capabilities, and lighting controls.
12 lines (10 loc) • 321 B
text/typescript
// This file is now deprecated - selection is handled by SelectionContext
export const useSelection = () => {
console.warn('useSelection hook is deprecated. Use useSelectionContext instead.');
return {
selectedObject: null,
selectObject: () => {},
clearSelection: () => {},
cleanup: () => {}
};
};