Skip to content

Commit 6c33182

Browse files
committed
WIP
1 parent 8e552ba commit 6c33182

File tree

7 files changed

+43300
-43303
lines changed

7 files changed

+43300
-43303
lines changed

nin/dasBoot/CameraController.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
const PathController = require('./PathController');
2+
const THREE = require('./lib/three.module.js');
23

34
function CameraController(rawPath) {
45
this.camera = new THREE.PerspectiveCamera(45, 16/9, 1, 50000);

nin/dasBoot/Loader.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const THREE = require('./lib/00_three');
1+
const THREE = require('./lib/three.module.js');
22

33
function Loader() {
44
this.eventNames = {

nin/dasBoot/PathController.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const {lerp, smoothstep, easeIn, easeOut} = require('./interpolations');
2-
const THREE = require('./lib/00_three');
2+
const THREE = require('./lib/three.module.js');
33

44
function PathController(raw_path, path_type) {
55
this.path_type = path_type || '3D';

nin/dasBoot/THREENode.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
const CameraController = require('./CameraController');
22
const Loader = require('./Loader');
33
const NIN = require('./NIN');
4+
const THREE = require('./lib/three.module.js');
45

56
class THREENode extends NIN.Node {
67
constructor(id, options) {

nin/dasBoot/bootstrap.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const THREE = window['THREE'] = require('./lib/00_three');
1+
const THREE = window['THREE'] = require('./lib/three.module.js');
22
require('./lib/01_EffectComposer');
33
require('./lib/BloomPass');
44
require('./lib/ClearPass');

0 commit comments

Comments
 (0)