diff --git a/docs/index.md b/docs/index.md index 28c56aee..75ae25b8 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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. diff --git a/src/ui/menu.ts b/src/ui/menu.ts index a91fe75b..3a897d19 100644 --- a/src/ui/menu.ts +++ b/src/ui/menu.ts @@ -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',