Skip to content

Commit

Permalink
Mad science, potion bottle
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonsturges committed Nov 21, 2024
1 parent 699afe3 commit 93ea0cd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions examples/scenes/mad-science.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import {
Book,
Bookshelf,
Bottle,
BubblingEffect,
Desk,
EmissivePulseEffect,
Expand All @@ -31,6 +30,7 @@
MortarAndPestle,
Panel,
PanelLight,
PotionBottle,
Stand,
TestTubeRack,
logarithmicRandomMax,
Expand Down Expand Up @@ -123,11 +123,11 @@
book.castShadow = true;
scene.add(book);

const bottle = new Bottle();
bottle.scale.set(0.25, 0.25, 0.25);
bottle.position.set(-0, 3.3, -1);
bottle.castShadow = true;
scene.add(bottle);
const potionBottle = new PotionBottle();
potionBottle.scale.set(0.25, 0.25, 0.25);
potionBottle.position.set(-0, 3.3, -1);
potionBottle.castShadow = true;
scene.add(potionBottle);

const flask = new Flask();
flask.scale.set(0.25, 0.25, 0.25);
Expand Down

0 comments on commit 93ea0cd

Please sign in to comment.