Skip to content

Commit

Permalink
Update useHover (support gui). Fix useCustomPropsHandler hook. #59
Browse files Browse the repository at this point in the history
deploy storybook add readme credits.
  • Loading branch information
brianzinn committed Apr 5, 2020
1 parent ea78ccd commit 9228ac8
Show file tree
Hide file tree
Showing 23 changed files with 467 additions and 314 deletions.
1 change: 1 addition & 0 deletions .storybook/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ module.exports = {
'@storybook/addon-actions/register',
'@storybook/addon-links/register',
'@storybook/addon-storysource/register',
'@storybook/addon-notes/register',
],
webpackFinal: async (config, { configType }) => {
config.module.rules.push({
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,6 @@ Huge shout out to [Konsumer](https://github.com/konsumer) that brought this proj

Thanks to [seacloud9](https://github.com/seacloud9) for adding storybook (and [GSAP demo](https://brianzinn.github.io/react-babylonjs/?path=/story/integrations--gsap-timeline)). Also for adding [dynamic terrain](https://brianzinn.github.io/react-babylonjs/?path=/story/babylon-basic--dynamic-terrain). Ported a branch of his into a [PIXI demo](https://brianzinn.github.io/react-babylonjs/?path=/story/integrations--pixi-story).

Lots of contributions from [hookex](https://github.com/hookex) :) Proper texture handling [demo](https://brianzinn.github.io/react-babylonjs/?path=/story/textures--image-texture), Node parenting [demo](https://brianzinn.github.io/react-babylonjs/?path=/story/babylon-basic--transform-node) Full Screen GUI [demo](https://brianzinn.github.io/react-babylonjs/?path=/story/gui--gui-full-screen), Effect Layers [glow demo](https://brianzinn.github.io/react-babylonjs/?path=/story/special-fx--glow-layer) and behaviors [demo](https://brianzinn.github.io/react-babylonjs/?path=/story/behaviors--pointer-drag-behavior).
Lots of contributions from [hookex](https://github.com/hookex) :) Proper texture handling [demo](https://brianzinn.github.io/react-babylonjs/?path=/story/textures--image-texture), Node parenting [demo](https://brianzinn.github.io/react-babylonjs/?path=/story/babylon-basic--transform-node) Full Screen GUI [demo](https://brianzinn.github.io/react-babylonjs/?path=/story/gui--gui-full-screen), Effect Layers [glow demo](https://brianzinn.github.io/react-babylonjs/?path=/story/special-fx--glow-layer), behaviors [demo](https://brianzinn.github.io/react-babylonjs/?path=/story/behaviors--pointer-drag-behavior), useHover & useClick [demo](https://brianzinn.github.io/react-babylonjs/?path=/story/hooks--use-hover-event) and react-spring integration [demo](https://brianzinn.github.io/react-babylonjs/?path=/story/integrations--react-spring).

Made with ♥ by Brian Zinn
21 changes: 11 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,16 @@
"@babylonjs/loaders": "^4.1.0",
"@babylonjs/procedural-textures": "^4.1.0",
"@inlet/react-pixi": "^1.2.8",
"@react-spring/addons": "^9.0.0-beta.33",
"@react-spring/animated": "^9.0.0-beta.33",
"@react-spring/core": "9.0.0-beta.30",
"@react-spring/shared": "^9.0.0-beta.33",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-typescript": "^4.0.0",
"@storybook/addon-actions": "^5.3.17",
"@storybook/addon-info": "^5.3.17",
"@storybook/addon-links": "^5.3.17",
"@storybook/addon-notes": "5.3.17",
"@storybook/addon-storysource": "^5.3.17",
"@storybook/addons": "^5.3.17",
"@storybook/react": "^5.3.17",
Expand Down Expand Up @@ -141,23 +146,19 @@
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.14.1",
"typescript": "3.8.2",
"validate-commit-msg": "^2.14.0",
"@react-spring/addons": "^9.0.0-beta.33",
"@react-spring/animated": "^9.0.0-beta.33",
"@react-spring/core": "9.0.0-beta.30",
"@react-spring/shared": "^9.0.0-beta.33"
"validate-commit-msg": "^2.14.0"
},
"peerDependencies": {
"@babylonjs/core": "4.x",
"@babylonjs/gui": "4.x",
"@babylonjs/inspector": "4.x",
"@babylonjs/loaders": "4.x",
"@react-spring/addons": "9.x",
"@react-spring/animated": "9.x",
"@react-spring/core": "9.x",
"@react-spring/shared": "9.x",
"react": "16.x",
"react-dom": "16.x",
"react-reconciler": "0.x",
"@react-spring/addons": "^9.0.0-beta.33",
"@react-spring/animated": "^9.0.0-beta.33",
"@react-spring/core": "9.0.0-beta.30",
"@react-spring/shared": "^9.0.0-beta.33"
"react-reconciler": "0.x"
}
}
Loading

0 comments on commit 9228ac8

Please sign in to comment.