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

Add-ons support #6468

Open
wants to merge 44 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
eccb840
Initial add-ons API commit
keianhzo Jan 29, 2024
4e69cb6
Try to get some more info about the build error
keianhzo Feb 15, 2024
1b48d6e
Do not install dev dependencies in production
keianhzo Feb 15, 2024
3cc6d09
Revert tests
keianhzo Feb 15, 2024
f3d84cc
organize types
keianhzo Feb 15, 2024
4ff2d0e
Test
keianhzo Feb 22, 2024
460930f
Omit dev packages when installing deps in production
keianhzo Apr 10, 2024
3726836
Package lock update
keianhzo Apr 10, 2024
2781f1f
Increase log level
keianhzo Apr 10, 2024
ca5a91e
Try --legacy-peer-deps
keianhzo Apr 10, 2024
4a432f9
Use webpack in addons instead of tsup
keianhzo Apr 17, 2024
f0da86a
Revert docker image changes
keianhzo Apr 17, 2024
174c6fa
Remove portals addon
keianhzo Apr 17, 2024
56f6567
Update addon version
keianhzo Apr 18, 2024
f3d12c4
Update addons
keianhzo Apr 24, 2024
2240897
BGs initial support
keianhzo May 8, 2024
0956082
Packages updates
keianhzo May 8, 2024
5920ae4
Better handle of bitECS/addons state
keianhzo May 9, 2024
fe03f9c
Add lost trigger collision group
keianhzo May 10, 2024
4f4f186
Skip homepage when creating a new room
keianhzo May 10, 2024
5beeac1
Update BGs add-on
keianhzo May 10, 2024
b16f757
Add-ons docs
keianhzo May 13, 2024
e03ce8b
Fix format
keianhzo May 13, 2024
672c680
Fix image size
keianhzo May 13, 2024
644d101
Restore dockerfile
keianhzo May 13, 2024
d616838
Add add-on preferences update support
keianhzo May 21, 2024
129b460
Add post-processing addon
keianhzo May 23, 2024
7c20ad5
Use legacy peers for storybook
keianhzo May 23, 2024
905abd9
Pin addons versions
keianhzo May 24, 2024
c02bb8d
remove unnecessary legacy-peer-deps
keianhzo Jun 3, 2024
5b9ce83
Fix admin store access
keianhzo Jun 3, 2024
bccf94d
Update admin store ref
keianhzo Jun 3, 2024
064441a
Fix addon configuration
keianhzo Jun 13, 2024
392782e
Merge branch 'master' into addons
Exairnous Nov 15, 2024
ec5835b
[Mozilla Branding Removal] Update dependency links
Exairnous Nov 15, 2024
b0c1a7a
Unpin addons versions
Exairnous Nov 15, 2024
7a99b6f
Make dependency URL capitalization consistent
Exairnous Nov 15, 2024
e449f66
Merge branch 'master' into addons (likely breaks the branch)
Exairnous Nov 17, 2024
348c602
Revert "Merge branch 'master' into addons (likely breaks the branch)"
Exairnous Nov 17, 2024
2d34e73
Merge branch 'master' into addons
Exairnous Dec 29, 2024
b1aa095
Documents that several addons are included with the addons branch
DougReeder Feb 25, 2025
926422f
Update doc/add-ons.md
DougReeder Feb 27, 2025
6f3d92a
Update doc/add-ons.md
DougReeder Feb 27, 2025
0d9c116
Merge pull request #6531 from Hubs-Foundation/addons-doc
Exairnous Mar 4, 2025
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
organize types
  • Loading branch information
keianhzo committed May 8, 2024
commit f3d84cc3ca13ccc8700a797014a60339ffc4209b
17 changes: 9 additions & 8 deletions src/hubs.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
export * from "./utils/create-networked-entity";
export * from "./bit-components";
export * from "./utils/bit-utils";
export * from "./addons";
export * from "./inflators/physics-shape";
export * from "./types";
export * from "./camera-layers";
export * from "./constants";
export * from "./utils/bit-utils";
export * from "./utils/jsx-entity";
export * from "./utils/media-url-utils";
export * from "./systems/floaty-object-system";
export * from "./types";
export * from "./camera-layers";
export * from "./bit-systems/delete-entity-system";
export * from "./utils/bit-pinning-helper";
export * from "./components/gltf-model-plus";
export * from "./utils/create-networked-entity";
export * from "./utils/material-utils";
export * from "./utils/network-schemas";
export * from "./utils/define-network-schema";
export * from "./utils/animate";
export * from "./utils/easing";
export * from "./utils/coroutine";
export * from "./utils/coroutine-utils";
export * from "./components/gltf-model-plus";
export * from "./inflators/physics-shape";
export * from "./inflators/media-frame";
export * from "./bit-systems/delete-entity-system";
export * from "./systems/floaty-object-system";
export * from "./systems/userinput/paths";
export * from "./systems/userinput/sets";
export * from "./systems/userinput/userinput";
Expand Down