Skip to content

Releases: MasatoMakino/threejs-interactive-object

v0.19.1

23 Dec 02:49
6378b30
Compare
Choose a tag to compare

What's Changed

🤖 CI / CD

🔧 Dependencies

All Updated Dependencies
  • chore(deps-dev): bump webdriverio from 9.2.1 to 9.2.2 by @dependabot in #338
  • chore(deps-dev): bump @vitest/coverage-istanbul from 2.1.3 to 2.1.4 by @dependabot in #339
  • chore(deps-dev): bump webdriverio from 9.2.2 to 9.2.4 by @dependabot in #341
  • chore(deps-dev): bump webdriverio from 9.2.4 to 9.2.6 by @dependabot in #342
  • chore(deps-dev): bump three from 0.169.0 to 0.170.0 by @dependabot in #343
  • chore(deps-dev): bump typedoc from 0.26.10 to 0.26.11 by @dependabot in #344
  • chore(deps-dev): bump webdriverio from 9.2.6 to 9.2.8 by @dependabot in #345
  • chore(deps-dev): bump webdriverio from 9.2.8 to 9.2.11 by @dependabot in #346
  • chore(deps-dev): bump webdriverio from 9.2.11 to 9.2.12 by @dependabot in #347
  • chore(deps): bump cookie, @bundled-es-modules/cookie and socket.io by @dependabot in #349
  • chore(deps-dev): bump @types/three from 0.169.0 to 0.170.0 by @dependabot in #348
  • chore(deps-dev): bump @vitest/coverage-istanbul from 2.1.4 to 2.1.5 by @dependabot in #350
  • chore(deps-dev): bump webdriverio from 9.2.12 to 9.2.14 by @dependabot in #352
  • chore(deps-dev): bump husky from 9.1.6 to 9.1.7 by @dependabot in #353
  • chore(deps-dev): bump webdriverio from 9.2.14 to 9.3.0 by @dependabot in #354
  • chore(deps-dev): bump webdriverio from 9.3.0 to 9.3.1 by @dependabot in #355
  • chore(deps-dev): bump @vitest/coverage-istanbul from 2.1.5 to 2.1.6 by @dependabot in #357
  • chore(deps-dev): bump typedoc from 0.26.11 to 0.27.0 by @dependabot in #361
  • chore(deps-dev): bump webdriverio from 9.3.1 to 9.4.0 by @dependabot in #359
  • chore(deps-dev): bump prettier from 3.3.3 to 3.4.1 by @dependabot in #362
  • chore(deps-dev): bump typescript from 5.6.3 to 5.7.2 by @dependabot in #356
  • chore(deps-dev): bump typedoc from 0.27.0 to 0.27.1 by @dependabot in #364
  • chore(deps-dev): bump webdriverio from 9.4.0 to 9.4.1 by @dependabot in #363
  • chore(deps-dev): bump three from 0.170.0 to 0.171.0 by @dependabot in #365
  • chore(deps-dev): bump @vitest/coverage-istanbul from 2.1.6 to 2.1.7 by @dependabot in #366
  • chore(deps-dev): bump typedoc from 0.27.1 to 0.27.2 by @dependabot in #367
  • chore(deps-dev): bump @vitest/coverage-istanbul from 2.1.7 to 2.1.8 by @dependabot in #370
  • chore(deps-dev): bump prettier from 3.4.1 to 3.4.2 by @dependabot in #371
  • chore(deps-dev): bump typedoc from 0.27.2 to 0.27.3 by @dependabot in #372
  • chore(deps-dev): bump typedoc from 0.27.3 to 0.27.4 by @dependabot in #373
  • chore(deps-dev): bump lint-staged from 15.2.10 to 15.2.11 by @dependabot in #374
  • chore(deps-dev): bump webdriverio from 9.4.1 to 9.4.2 by @dependabot in #375
  • chore(deps-dev): bump typedoc from 0.27.4 to 0.27.5 by @dependabot in #377
  • chore(deps-dev): bump @types/three from 0.170.0 to 0.171.0 by @dependabot in #376
  • chore(deps-dev): bump webdriverio from 9.4.2 to 9.4.3 by @dependabot in #378
  • chore(deps-dev): bump webdriverio from 9.4.3 to 9.4.5 by @dependabot in #379

Full Changelog: v0.19.0...v0.19.1

v0.19.0

27 Oct 06:39
ae2a1d1
Compare
Choose a tag to compare

What's Changed

🚨 Breaking change

  • Change : ButtonInteractionHandler by @MasatoMakino in #265
    • Change ClickableObject to ButtonInteractionHandler
    • Change IClickableObject3D.model to IClickableObject3D.interactionHandler
  • Update canvas size calculation and add demo for canvas resize by @MasatoMakino in #335

fix

CI / CD

bump

Full Changelog: https://github.com/MasatoMakino/threejs-interactive-object/compare/v0.18.0....

Read more

v0.18.0

25 Apr 04:21
Compare
Choose a tag to compare

What's Changed

change

CI / CD

bump

Full Changelog: v0.17.1...v0.18.0

v0.17.1

07 Jan 04:35
Compare
Choose a tag to compare

What's Changed

CI / CD

bump

Full Changelog: v0.17.0...v0.17.1

v0.17.0

11 Dec 05:37
Compare
Choose a tag to compare

What's Changed

change

bump

Full Changelog: v0.16.0...v0.17.0

v0.16.0

08 Oct 04:41
Compare
Choose a tag to compare

What's Changed

breaking change

ThreeMouseEvent are dispatched from ClickableMesh.model, not from Object3D. Affected points can be detected in types/three v0.156.

const clickable = new ClickableMesh({
  geo: new BoxBufferGeometry(3, 3, 3),
  material: new StateMaterialSet({
    normal: new MeshBasicMaterial({
      color: 0xffffff,
    }),
  }),
});
scene.add(clickable);
- clickable.addEventListener("click", (e) => {
+ clickable.model.on("click", (e) => {
  console.log("CLICKED!");
});

CI

fix

bump

Full Changelog: v0.15.0...v0.16.0

v0.15.0

09 Sep 05:48
Compare
Choose a tag to compare

What's Changed

breaking change

fix

bump

Full Changelog: v0.14.3...v0.15.0

v0.14.3

11 Jun 04:16
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.14.2...v0.14.3

v0.14.2

17 Mar 22:35
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.14.1...v0.14.2

v0.14.1

15 Mar 04:37
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.14.0...v0.14.1