Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Methuselah96 committed Jul 2, 2023
1 parent ed31baf commit f0c9aa5
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions examples-testing/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -383,24 +383,24 @@ const files = {
// 'physics_ammo_rope',
// 'physics_ammo_terrain',
// 'physics_ammo_volume',
'physics_rapier_instancing',
// 'physics_rapier_instancing',
],
misc: [
'misc_animation_groups',
'misc_animation_keys',
'misc_boxselection',
'misc_controls_arcball',
'misc_controls_drag',
'misc_controls_fly',
// 'misc_controls_fly',
'misc_controls_map',
'misc_controls_orbit',
'misc_controls_pointerlock',
'misc_controls_trackball',
'misc_controls_transform',
'misc_exporter_draco',
'misc_exporter_gltf',
// 'misc_exporter_gltf',
'misc_exporter_obj',
'misc_exporter_ply',
// 'misc_exporter_ply',
'misc_exporter_stl',
'misc_exporter_usdz',
'misc_lookat',
Expand All @@ -427,6 +427,9 @@ const re = /<script type="module">((.|\r|\n)+)<\/script>/;
const inDir = '../../three.js/examples';
const outDir = './examples';

fs.rmSync(outDir, { recursive: true, force: true });
fs.mkdirSync(outDir);

for (const section of Object.values(files)) {
for (const file of section) {
console.log(file);
Expand Down

0 comments on commit f0c9aa5

Please sign in to comment.