├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .nvmrc ├── .prettierrc.json ├── .vscodeignore ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.dev.md ├── README.md ├── commitlint.config.mjs ├── eslint.config.mjs ├── index.html ├── logo.png ├── out ├── commands │ └── index.js ├── config │ └── index.js ├── handlers │ ├── handleSettings │ │ └── index.js │ ├── onDidReceiveMessage │ │ └── index.js │ ├── openExplorer │ │ └── index.js │ ├── openFile │ │ └── index.js │ ├── readDirectory │ │ └── index.js │ └── utils │ │ └── index.js ├── images │ └── favicon.png ├── index.html ├── index.js ├── models │ ├── birds │ │ └── birds.glb │ ├── boat │ │ └── boat.glb │ ├── file │ │ └── file.glb │ ├── folder │ │ └── folder.glb │ └── ocean │ │ └── ocean.jpeg ├── music │ └── waves.mp3 ├── store │ └── index.js ├── types │ └── index.js └── utils │ └── index.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── images │ └── favicon.png ├── models │ ├── birds │ │ └── birds.glb │ ├── boat │ │ └── boat.glb │ ├── file │ │ └── file.glb │ ├── folder │ │ └── folder.glb │ └── ocean │ │ └── ocean.jpeg └── music │ ├── horn.ogg │ └── waves.mp3 ├── src ├── browser │ ├── components │ │ ├── index.tsx │ │ ├── ui │ │ │ ├── breadcrumbs │ │ │ │ ├── branch │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── path │ │ │ │ │ └── index.tsx │ │ │ ├── color-picker │ │ │ │ └── index.tsx │ │ │ ├── compass │ │ │ │ └── index.tsx │ │ │ ├── donate │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ ├── loading │ │ │ │ └── index.tsx │ │ │ ├── no-open-project │ │ │ │ └── index.tsx │ │ │ ├── select │ │ │ │ └── index.tsx │ │ │ ├── settings │ │ │ │ ├── buttons │ │ │ │ │ └── index.tsx │ │ │ │ ├── content │ │ │ │ │ ├── about │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── behavior │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── controls │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── general │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── restore │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── modal │ │ │ │ │ └── index.tsx │ │ │ │ └── tabs │ │ │ │ │ └── index.tsx │ │ │ ├── slider │ │ │ │ └── index.tsx │ │ │ ├── splash │ │ │ │ └── index.tsx │ │ │ └── tooltip │ │ │ │ └── index.tsx │ │ └── world │ │ │ ├── audio │ │ │ ├── horn │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ └── waves │ │ │ │ └── index.tsx │ │ │ ├── backdrop │ │ │ ├── index.tsx │ │ │ └── utils.ts │ │ │ ├── boat │ │ │ └── index.tsx │ │ │ ├── camera │ │ │ └── index.tsx │ │ │ ├── canvas │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ ├── joystick │ │ │ └── index.tsx │ │ │ ├── lights │ │ │ └── index.tsx │ │ │ ├── minimap │ │ │ ├── index.tsx │ │ │ └── toggle.tsx │ │ │ ├── nodes │ │ │ ├── file │ │ │ │ └── index.tsx │ │ │ ├── folder │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ │ ├── ocean │ │ │ └── index.tsx │ │ │ └── sky │ │ │ └── index.tsx │ ├── config │ │ └── index.ts │ ├── context │ │ ├── extension │ │ │ ├── context.ts │ │ │ └── index.tsx │ │ └── game │ │ │ ├── context.ts │ │ │ └── index.tsx │ └── hooks │ │ ├── useBoat │ │ ├── colors │ │ │ └── index.ts │ │ ├── compass │ │ │ └── index.ts │ │ ├── floating │ │ │ └── index.tsx │ │ ├── keyboard │ │ │ └── index.ts │ │ └── navigation │ │ │ └── index.tsx │ │ ├── useExtension │ │ └── context │ │ │ └── index.ts │ │ ├── useGame │ │ ├── config │ │ │ └── index.ts │ │ ├── context │ │ │ └── index.ts │ │ ├── settings │ │ │ └── index.ts │ │ └── store │ │ │ └── index.ts │ │ ├── useGit │ │ ├── index.ts │ │ └── useBranch │ │ │ └── index.ts │ │ ├── useMinimap │ │ └── index.ts │ │ ├── useModels │ │ ├── file │ │ │ └── index.ts │ │ └── folder │ │ │ └── index.ts │ │ ├── useNode │ │ ├── collision │ │ │ └── index.ts │ │ ├── movement │ │ │ └── index.ts │ │ ├── placement │ │ │ └── index.ts │ │ └── shortcuts │ │ │ └── index.ts │ │ ├── useOcean │ │ └── regen │ │ │ └── index.ts │ │ ├── usePersistence │ │ └── index.ts │ │ └── useWalker │ │ └── index.ts ├── extension │ ├── commands │ │ └── index.ts │ ├── config │ │ └── index.ts │ ├── handlers │ │ ├── git │ │ │ └── branches │ │ │ │ ├── checkout.ts │ │ │ │ └── list.ts │ │ ├── handleSettings │ │ │ └── index.ts │ │ ├── onDidReceiveMessage │ │ │ └── index.ts │ │ ├── openExplorer │ │ │ └── index.ts │ │ ├── openFile │ │ │ └── index.ts │ │ ├── readDirectory │ │ │ └── index.ts │ │ └── utils │ │ │ └── index.ts │ ├── index.ts │ ├── store │ │ └── index.ts │ ├── types │ │ ├── git.d.ts │ │ └── index.ts │ └── utils │ │ └── index.ts └── main │ ├── global.css │ ├── global.d.ts │ ├── index.tsx │ └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.extension.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.11.0 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/README.dev.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.mjs: -------------------------------------------------------------------------------- 1 | export default { extends: ["@commitlint/config-conventional"] }; 2 | -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/index.html -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/logo.png -------------------------------------------------------------------------------- /out/commands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/out/commands/index.js -------------------------------------------------------------------------------- /out/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/out/config/index.js -------------------------------------------------------------------------------- /out/handlers/handleSettings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/out/handlers/handleSettings/index.js -------------------------------------------------------------------------------- /out/handlers/onDidReceiveMessage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/out/handlers/onDidReceiveMessage/index.js -------------------------------------------------------------------------------- /out/handlers/openExplorer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/out/handlers/openExplorer/index.js -------------------------------------------------------------------------------- /out/handlers/openFile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/out/handlers/openFile/index.js -------------------------------------------------------------------------------- /out/handlers/readDirectory/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/out/handlers/readDirectory/index.js -------------------------------------------------------------------------------- /out/handlers/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/out/handlers/utils/index.js -------------------------------------------------------------------------------- /out/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/out/images/favicon.png -------------------------------------------------------------------------------- /out/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/out/index.html -------------------------------------------------------------------------------- /out/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/out/index.js -------------------------------------------------------------------------------- /out/models/birds/birds.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/out/models/birds/birds.glb -------------------------------------------------------------------------------- /out/models/boat/boat.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/out/models/boat/boat.glb -------------------------------------------------------------------------------- /out/models/file/file.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/out/models/file/file.glb -------------------------------------------------------------------------------- /out/models/folder/folder.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/out/models/folder/folder.glb -------------------------------------------------------------------------------- /out/models/ocean/ocean.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/out/models/ocean/ocean.jpeg -------------------------------------------------------------------------------- /out/music/waves.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/out/music/waves.mp3 -------------------------------------------------------------------------------- /out/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/out/store/index.js -------------------------------------------------------------------------------- /out/types/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /out/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/out/utils/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/public/images/favicon.png -------------------------------------------------------------------------------- /public/models/birds/birds.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/public/models/birds/birds.glb -------------------------------------------------------------------------------- /public/models/boat/boat.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/public/models/boat/boat.glb -------------------------------------------------------------------------------- /public/models/file/file.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/public/models/file/file.glb -------------------------------------------------------------------------------- /public/models/folder/folder.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/public/models/folder/folder.glb -------------------------------------------------------------------------------- /public/models/ocean/ocean.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/public/models/ocean/ocean.jpeg -------------------------------------------------------------------------------- /public/music/horn.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/public/music/horn.ogg -------------------------------------------------------------------------------- /public/music/waves.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/public/music/waves.mp3 -------------------------------------------------------------------------------- /src/browser/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/breadcrumbs/branch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/breadcrumbs/branch/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/breadcrumbs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/breadcrumbs/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/breadcrumbs/path/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/breadcrumbs/path/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/color-picker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/color-picker/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/compass/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/compass/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/donate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/donate/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/loading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/loading/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/no-open-project/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/no-open-project/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/select/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/settings/buttons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/settings/buttons/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/settings/content/about/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/settings/content/about/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/settings/content/behavior/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/settings/content/behavior/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/settings/content/controls/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/settings/content/controls/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/settings/content/general/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/settings/content/general/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/settings/content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/settings/content/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/settings/content/restore/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/settings/content/restore/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/settings/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/settings/modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/settings/modal/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/settings/tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/settings/tabs/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/slider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/slider/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/splash/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/splash/index.tsx -------------------------------------------------------------------------------- /src/browser/components/ui/tooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/ui/tooltip/index.tsx -------------------------------------------------------------------------------- /src/browser/components/world/audio/horn/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/world/audio/horn/index.tsx -------------------------------------------------------------------------------- /src/browser/components/world/audio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/world/audio/index.tsx -------------------------------------------------------------------------------- /src/browser/components/world/audio/waves/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/world/audio/waves/index.tsx -------------------------------------------------------------------------------- /src/browser/components/world/backdrop/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/world/backdrop/index.tsx -------------------------------------------------------------------------------- /src/browser/components/world/backdrop/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/world/backdrop/utils.ts -------------------------------------------------------------------------------- /src/browser/components/world/boat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/world/boat/index.tsx -------------------------------------------------------------------------------- /src/browser/components/world/camera/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/world/camera/index.tsx -------------------------------------------------------------------------------- /src/browser/components/world/canvas/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/world/canvas/index.tsx -------------------------------------------------------------------------------- /src/browser/components/world/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/world/index.tsx -------------------------------------------------------------------------------- /src/browser/components/world/joystick/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/world/joystick/index.tsx -------------------------------------------------------------------------------- /src/browser/components/world/lights/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/world/lights/index.tsx -------------------------------------------------------------------------------- /src/browser/components/world/minimap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/world/minimap/index.tsx -------------------------------------------------------------------------------- /src/browser/components/world/minimap/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/world/minimap/toggle.tsx -------------------------------------------------------------------------------- /src/browser/components/world/nodes/file/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/world/nodes/file/index.tsx -------------------------------------------------------------------------------- /src/browser/components/world/nodes/folder/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/world/nodes/folder/index.tsx -------------------------------------------------------------------------------- /src/browser/components/world/nodes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/world/nodes/index.tsx -------------------------------------------------------------------------------- /src/browser/components/world/ocean/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/world/ocean/index.tsx -------------------------------------------------------------------------------- /src/browser/components/world/sky/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/components/world/sky/index.tsx -------------------------------------------------------------------------------- /src/browser/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/config/index.ts -------------------------------------------------------------------------------- /src/browser/context/extension/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/context/extension/context.ts -------------------------------------------------------------------------------- /src/browser/context/extension/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/context/extension/index.tsx -------------------------------------------------------------------------------- /src/browser/context/game/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/context/game/context.ts -------------------------------------------------------------------------------- /src/browser/context/game/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/context/game/index.tsx -------------------------------------------------------------------------------- /src/browser/hooks/useBoat/colors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/hooks/useBoat/colors/index.ts -------------------------------------------------------------------------------- /src/browser/hooks/useBoat/compass/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/hooks/useBoat/compass/index.ts -------------------------------------------------------------------------------- /src/browser/hooks/useBoat/floating/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/hooks/useBoat/floating/index.tsx -------------------------------------------------------------------------------- /src/browser/hooks/useBoat/keyboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/hooks/useBoat/keyboard/index.ts -------------------------------------------------------------------------------- /src/browser/hooks/useBoat/navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/hooks/useBoat/navigation/index.tsx -------------------------------------------------------------------------------- /src/browser/hooks/useExtension/context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/hooks/useExtension/context/index.ts -------------------------------------------------------------------------------- /src/browser/hooks/useGame/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/hooks/useGame/config/index.ts -------------------------------------------------------------------------------- /src/browser/hooks/useGame/context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/hooks/useGame/context/index.ts -------------------------------------------------------------------------------- /src/browser/hooks/useGame/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/hooks/useGame/settings/index.ts -------------------------------------------------------------------------------- /src/browser/hooks/useGame/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/hooks/useGame/store/index.ts -------------------------------------------------------------------------------- /src/browser/hooks/useGit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/hooks/useGit/index.ts -------------------------------------------------------------------------------- /src/browser/hooks/useGit/useBranch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/hooks/useGit/useBranch/index.ts -------------------------------------------------------------------------------- /src/browser/hooks/useMinimap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/hooks/useMinimap/index.ts -------------------------------------------------------------------------------- /src/browser/hooks/useModels/file/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/hooks/useModels/file/index.ts -------------------------------------------------------------------------------- /src/browser/hooks/useModels/folder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/hooks/useModels/folder/index.ts -------------------------------------------------------------------------------- /src/browser/hooks/useNode/collision/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/hooks/useNode/collision/index.ts -------------------------------------------------------------------------------- /src/browser/hooks/useNode/movement/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/hooks/useNode/movement/index.ts -------------------------------------------------------------------------------- /src/browser/hooks/useNode/placement/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/hooks/useNode/placement/index.ts -------------------------------------------------------------------------------- /src/browser/hooks/useNode/shortcuts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/hooks/useNode/shortcuts/index.ts -------------------------------------------------------------------------------- /src/browser/hooks/useOcean/regen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/hooks/useOcean/regen/index.ts -------------------------------------------------------------------------------- /src/browser/hooks/usePersistence/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/hooks/usePersistence/index.ts -------------------------------------------------------------------------------- /src/browser/hooks/useWalker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/browser/hooks/useWalker/index.ts -------------------------------------------------------------------------------- /src/extension/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/extension/commands/index.ts -------------------------------------------------------------------------------- /src/extension/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/extension/config/index.ts -------------------------------------------------------------------------------- /src/extension/handlers/git/branches/checkout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/extension/handlers/git/branches/checkout.ts -------------------------------------------------------------------------------- /src/extension/handlers/git/branches/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/extension/handlers/git/branches/list.ts -------------------------------------------------------------------------------- /src/extension/handlers/handleSettings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/extension/handlers/handleSettings/index.ts -------------------------------------------------------------------------------- /src/extension/handlers/onDidReceiveMessage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/extension/handlers/onDidReceiveMessage/index.ts -------------------------------------------------------------------------------- /src/extension/handlers/openExplorer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/extension/handlers/openExplorer/index.ts -------------------------------------------------------------------------------- /src/extension/handlers/openFile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/extension/handlers/openFile/index.ts -------------------------------------------------------------------------------- /src/extension/handlers/readDirectory/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/extension/handlers/readDirectory/index.ts -------------------------------------------------------------------------------- /src/extension/handlers/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/extension/handlers/utils/index.ts -------------------------------------------------------------------------------- /src/extension/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/extension/index.ts -------------------------------------------------------------------------------- /src/extension/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/extension/store/index.ts -------------------------------------------------------------------------------- /src/extension/types/git.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/extension/types/git.d.ts -------------------------------------------------------------------------------- /src/extension/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/extension/types/index.ts -------------------------------------------------------------------------------- /src/extension/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/extension/utils/index.ts -------------------------------------------------------------------------------- /src/main/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/main/global.css -------------------------------------------------------------------------------- /src/main/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/main/global.d.ts -------------------------------------------------------------------------------- /src/main/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/src/main/index.tsx -------------------------------------------------------------------------------- /src/main/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/tsconfig.extension.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liltrendi/gitlantis/HEAD/vite.config.ts --------------------------------------------------------------------------------