Skip to content

Commit

Permalink
Add Discord and Forum to Help Menu
Browse files Browse the repository at this point in the history
  • Loading branch information
willeastcott committed Aug 21, 2024
1 parent 2a1f7d3 commit d399017
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ However, for your convenience, you can also install SuperSplat as a PWA (Progres

SuperSplat loads splats from .ply files. Only .ply files containing 3D Gaussian Splat data can be loaded. If you attempt to load any other type of data from a .ply file, it will fail.

There are two ways that you can load a .ply file:
There are three ways that you can load a .ply file:

1. Drag and drop one or more .ply files from your file system into SuperSplat's client area.
2. Select the `Scene` > `Open` menu item and select one or more .ply files from your file system.
Expand Down
10 changes: 10 additions & 0 deletions src/ui/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,16 @@ class Menu extends Container {
onSelect: () => window.open('https://github.com/playcanvas/supersplat', '_blank').focus()
}, {
// separator
}, {
text: 'Discord Server',
icon: 'E233',
onSelect: () => window.open('https://discord.com/channels/408617316415307776/1275850227663769686', '_blank').focus()
}, {
text: 'Forum',
icon: 'E432',
onSelect: () => window.open('https://forum.playcanvas.com', '_blank').focus()
}, {
// separator
}, {
text: 'About SuperSplat',
icon: 'E138',
Expand Down

0 comments on commit d399017

Please sign in to comment.