Skip to content

Commit

Permalink
removing oef setter
Browse files Browse the repository at this point in the history
  • Loading branch information
kalwalt committed Nov 24, 2023
1 parent 20ecb9e commit de6303f
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion examples/arNFT_example.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@
sceneThreejs.initRenderer();

let nftAddTJS = new ARnftThreejs.NFTaddTJS(nft.uuid);
nftAddTJS.oef = true;
nftAddTJS.add(cube, 'pinball', false);

const tick = () => {
Expand Down
1 change: 0 additions & 1 deletion examples/arNFT_gltf_brave_robot_example.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@
scene.add(directionalLight)

let nftAddTJS = new ARnftThreejs.NFTaddTJS(nft.uuid);
nftAddTJS.oef = true;
// gLTF model provided by Brett Alistair Kromkamp https://github.com/brettkromkamp
nftAddTJS.addModel('./Data/models/brave_robot/gLTF/brave_robot.glb', 'pinball', 80, false);

Expand Down
1 change: 0 additions & 1 deletion examples/arNFT_gltf_example.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@
scene.add(directionalLight)

let nftAddTJS = new ARnftThreejs.NFTaddTJS(nft.uuid);
nftAddTJS.oef = true;
nftAddTJS.addModel('./Data/models/Duck/glTF/Duck.glb', 'pinball', 80, false);
const tick = () => {
sceneThreejs.draw();
Expand Down
1 change: 0 additions & 1 deletion examples/arNFT_gltf_flamingo_example.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@
scene.add(directionalLight);

let nftAddTJS = new ARnftThreejs.NFTaddTJS(nft.uuid);
nftAddTJS.oef = true;
let mixers = [];
let clock = new THREE.Clock();
function modelAnimation(gltf) {
Expand Down
1 change: 0 additions & 1 deletion examples/arNFT_image_example.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
sceneThreejs.initRenderer();

let nftAddTJS = new ARnftThreejs.NFTaddTJS(nft.uuid);
nftAddTJS.oef = true;
// Set width, height and width and height number of segments of the PlaneGeometry.
let imgConfig = {w: 1, h: 1, ws: 1, hs: 1};
nftAddTJS.addImage('./Data/aframe-k.png', 'pinball', 0xbbbbff, 180, imgConfig, false);
Expand Down
1 change: 0 additions & 1 deletion examples/arNFT_multi_one_worker_example.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@
sceneThreejs.initRenderer();

let nftAddTJS = new ARnftThreejs.NFTaddTJS(nft.uuid);
nftAddTJS.oef = true;
nftAddTJS.add(cube, 'pinball', false);

const tick = () => {
Expand Down
1 change: 0 additions & 1 deletion examples/arNFT_video_example.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@
sceneThreejs.initRenderer();

let nftAddTJS = new ARnftThreejs.NFTaddTJS(nft.uuid);
nftAddTJS.oef = true;
// Set width, height and width and height number of segments of the PlaneGeometry.
let imgConfig = {w: 1, h: 1, ws: 1, hs: 1};
nftAddTJS.addVideo('arvideo', 'pinball', 180, imgConfig, false);
Expand Down

0 comments on commit de6303f

Please sign in to comment.