Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release v0.8.3 #449

Merged
merged 25 commits into from
Aug 31, 2024
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
4b34685
chore: update ClearCoat sample
lslzl3000 Jul 22, 2024
af74bb1
fix(GUI): add option to receive post effects (#426)
Codeboy-cn Jul 23, 2024
a1d1b2a
feat(graphic): move graphic3D to @orillusion/graphic (#427)
lslzl3000 Jul 23, 2024
2a446a2
chore: update graphic tsconfig
lslzl3000 Jul 23, 2024
fbc00a6
chore: update ssr sample
lslzl3000 Jul 23, 2024
5ad10a2
chore: fix compute samples
lslzl3000 Jul 24, 2024
369a65a
chore(docs): fix typedoc plugin script
lslzl3000 Jul 24, 2024
b6b4bce
chore: remove typedoc script
lslzl3000 Jul 25, 2024
14c80e4
chore: remove earcut npm package (#428)
Codeboy-cn Jul 25, 2024
1922f18
fix(transform): fix lookAt at vertical angle (#431)
lslzl3000 Jul 27, 2024
cc90b82
fix(inputsystem): capture pointer on pointerdown (#432)
lslzl3000 Jul 27, 2024
fc74fa1
chore: clear shader docs
lslzl3000 Jul 27, 2024
a939ce6
feat: add GridObject (#436)
lslzl3000 Jul 29, 2024
4d6a838
fix(shadow): fix acceptShadow
lslzl3000 Aug 7, 2024
7c18db5
feat(physics): Refactor physics plugin with extensive enhancements an…
ID-Emmett Aug 13, 2024
069e6d4
feat(geometry): add extra geometry package, extrude geometry and text…
Codeboy-cn Aug 13, 2024
5a9ff20
chore: add README for @orillusion/geometry
lslzl3000 Aug 14, 2024
ba26dc8
refactor: deprecate packages/effect, move Terrain Grass into packages…
lslzl3000 Aug 14, 2024
c154fe1
chore: fix sample import
lslzl3000 Aug 14, 2024
9d8ae6b
Fix: depthCompare
Codeboy-cn Aug 18, 2024
23868d0
chore: use peerDependencies in packages
lslzl3000 Aug 19, 2024
4529594
fix: fix InstanceDraw destroy error
lslzl3000 Aug 25, 2024
452d730
feat(physics): add RopeSoftBody, rigidbody dragger, and enhance colli…
ID-Emmett Aug 28, 2024
c4b8626
fix: fix frameRate and camera resize
lslzl3000 Aug 28, 2024
917acd3
bump v0.8.3
lslzl3000 Aug 28, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: fix sample import
lslzl3000 committed Aug 14, 2024
commit c154fe14bea2782af7645a051802fbb997622bd1
2 changes: 1 addition & 1 deletion samples/physics/Sample_MultipleShapes.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Engine3D, LitMaterial, MeshRenderer, BoxGeometry, Object3D, Scene3D, View3D, Object3DUtil, Vector3, AtmosphericComponent, DirectLight, SphereGeometry, CameraUtil, HoverCameraController, BitmapTexture2D, VertexAttributeName, Color, CylinderGeometry, TorusGeometry, ComponentBase } from "@orillusion/core";
import { TerrainGeometry } from "@orillusion/effect";
import { TerrainGeometry } from "@orillusion/geometry";
import { Graphic3D } from "@orillusion/graphic";
import { Ammo, CollisionShapeUtil, Physics, Rigidbody } from "@orillusion/physics";
import { Stats } from "@orillusion/stats";