-
Notifications
You must be signed in to change notification settings - Fork 668
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #322 from Orillusion/dev
# [0.7.0](v0.6.9...v0.7.0) (2023-11-01) ### Bug Fixes * Character loss during text layout. ([#317](#317)) ([8ad7169](8ad7169)) * fix gltf sample ([#321](#321)) ([4ca35b5](4ca35b5)) * **particle:** add get baseMap ([e59bd9f](e59bd9f)) ### Features * add graphic bath mesh ([#319](#319)) ([7df4f95](7df4f95)) * **audio:** move audio to @orillusion/media-extension ([166d286](166d286))
- Loading branch information
Showing
345 changed files
with
15,046 additions
and
3,411 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from "./src/index" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Add effect components for [Orillusion](https://www.orillusion.com) | ||
|
||
## Install | ||
```bash | ||
npm install @orillusion/core --save | ||
npm install @orillusion/effect --save | ||
``` | ||
|
||
Or access Global build from CDN | ||
```html | ||
<script src="https://unpkg.com/@orillusion/core/dist/orillusion.umd.js"></script> | ||
<script src="https://unpkg.com/@orillusion/media-extention/dist/effect.umd.js"></script> | ||
``` | ||
|
||
More doc from [Orillusion](https://www.orillusion.com/guide/effect/Readme.html) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { defineConfig } from 'vite' | ||
const path = require('path') | ||
export default defineConfig({ | ||
resolve: { | ||
alias: { | ||
'@orillusion/core': path.resolve(__dirname, '../../src'), | ||
'@orillusion': path.resolve(__dirname, '../') | ||
} | ||
}, | ||
build: { | ||
lib: { | ||
entry: path.resolve('index.ts'), | ||
name: 'Effect', | ||
fileName: (format) => `effect.${format}.js` | ||
}, | ||
rollupOptions: { | ||
external: ['@orillusion/core'], | ||
output: { | ||
globals: { | ||
'@orillusion/core': 'Orillusion' | ||
} | ||
} | ||
} | ||
} | ||
}) |
Oops, something went wrong.