├── .babelrc ├── .gitattributes ├── .gitignore ├── .meteor ├── .finished-upgraders ├── .gitignore ├── .id ├── packages ├── platforms ├── release └── versions ├── .prettierignore ├── .prettierrc.js ├── README.md ├── dist ├── client │ ├── entry.d.ts │ ├── entry.d.ts.map │ ├── entry.jsx │ ├── entry.jsx.map │ └── imports │ │ ├── App.d.ts │ │ ├── App.d.ts.map │ │ ├── App.jsx │ │ ├── App.jsx.map │ │ ├── Character.d.ts │ │ ├── Character.d.ts.map │ │ ├── Character.jsx │ │ ├── Character.jsx.map │ │ ├── FirstPersonCamera.d.ts │ │ ├── FirstPersonCamera.d.ts.map │ │ ├── FirstPersonCamera.jsx │ │ ├── FirstPersonCamera.jsx.map │ │ ├── Lights.d.ts │ │ ├── Lights.d.ts.map │ │ ├── Lights.jsx │ │ ├── Lights.jsx.map │ │ ├── Rifle.d.ts │ │ ├── Rifle.d.ts.map │ │ ├── Rifle.jsx │ │ └── Rifle.jsx.map ├── imports │ └── collections │ │ ├── mapItems.d.ts │ │ ├── mapItems.d.ts.map │ │ ├── mapItems.js │ │ ├── mapItems.js.map │ │ ├── players.d.ts │ │ ├── players.d.ts.map │ │ ├── players.js │ │ └── players.js.map └── server │ ├── entry.d.ts │ ├── entry.d.ts.map │ ├── entry.js │ └── entry.js.map ├── entry.css ├── entry.html ├── lume.config.cjs ├── package.json ├── public ├── ChuckChuck │ ├── body.fbx │ ├── head.fbx │ ├── left_arm.fbx │ ├── left_leg.fbx │ ├── right_arm.fbx │ └── right_leg.fbx ├── big_tree.fbx ├── gun.fbx ├── gunshot.mp3 ├── images │ ├── cube │ │ ├── back.svg │ │ ├── bottom.svg │ │ ├── front.svg │ │ ├── left.svg │ │ ├── right.svg │ │ └── top.svg │ ├── favicons │ │ ├── apple-touch-icon-114x114.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-144x144.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-57x57.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-72x72.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── browserconfig.xml │ │ ├── code.txt │ │ ├── favicon-128.png │ │ ├── favicon-16x16.png │ │ ├── favicon-196x196.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── favicon.ico │ │ ├── mstile-144x144.png │ │ ├── mstile-150x150.png │ │ ├── mstile-310x150.png │ │ ├── mstile-310x310.png │ │ └── mstile-70x70.png │ ├── logo-wordmark-vertical.svg │ ├── logo-wordmark.svg │ └── logo.svg ├── pine.fbx ├── shrub.fbx ├── shrub2.fbx ├── stone.fbx └── tree.fbx ├── src ├── client │ ├── entry.tsx │ └── imports │ │ ├── App.tsx │ │ ├── Character.tsx │ │ ├── FirstPersonCamera.tsx │ │ ├── Lights.tsx │ │ └── Rifle.tsx ├── imports │ └── collections │ │ ├── mapItems.ts │ │ └── players.ts └── server │ └── entry.ts └── tsconfig.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/.gitignore -------------------------------------------------------------------------------- /.meteor/.finished-upgraders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/.meteor/.finished-upgraders -------------------------------------------------------------------------------- /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/.meteor/.id -------------------------------------------------------------------------------- /.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/.meteor/packages -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@3.0.3 2 | -------------------------------------------------------------------------------- /.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/.meteor/versions -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/README.md -------------------------------------------------------------------------------- /dist/client/entry.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=entry.d.ts.map -------------------------------------------------------------------------------- /dist/client/entry.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/entry.d.ts.map -------------------------------------------------------------------------------- /dist/client/entry.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/entry.jsx -------------------------------------------------------------------------------- /dist/client/entry.jsx.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/entry.jsx.map -------------------------------------------------------------------------------- /dist/client/imports/App.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/imports/App.d.ts -------------------------------------------------------------------------------- /dist/client/imports/App.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/imports/App.d.ts.map -------------------------------------------------------------------------------- /dist/client/imports/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/imports/App.jsx -------------------------------------------------------------------------------- /dist/client/imports/App.jsx.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/imports/App.jsx.map -------------------------------------------------------------------------------- /dist/client/imports/Character.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/imports/Character.d.ts -------------------------------------------------------------------------------- /dist/client/imports/Character.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/imports/Character.d.ts.map -------------------------------------------------------------------------------- /dist/client/imports/Character.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/imports/Character.jsx -------------------------------------------------------------------------------- /dist/client/imports/Character.jsx.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/imports/Character.jsx.map -------------------------------------------------------------------------------- /dist/client/imports/FirstPersonCamera.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/imports/FirstPersonCamera.d.ts -------------------------------------------------------------------------------- /dist/client/imports/FirstPersonCamera.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/imports/FirstPersonCamera.d.ts.map -------------------------------------------------------------------------------- /dist/client/imports/FirstPersonCamera.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/imports/FirstPersonCamera.jsx -------------------------------------------------------------------------------- /dist/client/imports/FirstPersonCamera.jsx.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/imports/FirstPersonCamera.jsx.map -------------------------------------------------------------------------------- /dist/client/imports/Lights.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/imports/Lights.d.ts -------------------------------------------------------------------------------- /dist/client/imports/Lights.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/imports/Lights.d.ts.map -------------------------------------------------------------------------------- /dist/client/imports/Lights.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/imports/Lights.jsx -------------------------------------------------------------------------------- /dist/client/imports/Lights.jsx.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/imports/Lights.jsx.map -------------------------------------------------------------------------------- /dist/client/imports/Rifle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/imports/Rifle.d.ts -------------------------------------------------------------------------------- /dist/client/imports/Rifle.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/imports/Rifle.d.ts.map -------------------------------------------------------------------------------- /dist/client/imports/Rifle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/imports/Rifle.jsx -------------------------------------------------------------------------------- /dist/client/imports/Rifle.jsx.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/client/imports/Rifle.jsx.map -------------------------------------------------------------------------------- /dist/imports/collections/mapItems.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/imports/collections/mapItems.d.ts -------------------------------------------------------------------------------- /dist/imports/collections/mapItems.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/imports/collections/mapItems.d.ts.map -------------------------------------------------------------------------------- /dist/imports/collections/mapItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/imports/collections/mapItems.js -------------------------------------------------------------------------------- /dist/imports/collections/mapItems.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/imports/collections/mapItems.js.map -------------------------------------------------------------------------------- /dist/imports/collections/players.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/imports/collections/players.d.ts -------------------------------------------------------------------------------- /dist/imports/collections/players.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/imports/collections/players.d.ts.map -------------------------------------------------------------------------------- /dist/imports/collections/players.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/imports/collections/players.js -------------------------------------------------------------------------------- /dist/imports/collections/players.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/imports/collections/players.js.map -------------------------------------------------------------------------------- /dist/server/entry.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=entry.d.ts.map -------------------------------------------------------------------------------- /dist/server/entry.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/server/entry.d.ts.map -------------------------------------------------------------------------------- /dist/server/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/server/entry.js -------------------------------------------------------------------------------- /dist/server/entry.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/dist/server/entry.js.map -------------------------------------------------------------------------------- /entry.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/entry.css -------------------------------------------------------------------------------- /entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/entry.html -------------------------------------------------------------------------------- /lume.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = {} 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/package.json -------------------------------------------------------------------------------- /public/ChuckChuck/body.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/ChuckChuck/body.fbx -------------------------------------------------------------------------------- /public/ChuckChuck/head.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/ChuckChuck/head.fbx -------------------------------------------------------------------------------- /public/ChuckChuck/left_arm.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/ChuckChuck/left_arm.fbx -------------------------------------------------------------------------------- /public/ChuckChuck/left_leg.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/ChuckChuck/left_leg.fbx -------------------------------------------------------------------------------- /public/ChuckChuck/right_arm.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/ChuckChuck/right_arm.fbx -------------------------------------------------------------------------------- /public/ChuckChuck/right_leg.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/ChuckChuck/right_leg.fbx -------------------------------------------------------------------------------- /public/big_tree.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/big_tree.fbx -------------------------------------------------------------------------------- /public/gun.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/gun.fbx -------------------------------------------------------------------------------- /public/gunshot.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/gunshot.mp3 -------------------------------------------------------------------------------- /public/images/cube/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/cube/back.svg -------------------------------------------------------------------------------- /public/images/cube/bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/cube/bottom.svg -------------------------------------------------------------------------------- /public/images/cube/front.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/cube/front.svg -------------------------------------------------------------------------------- /public/images/cube/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/cube/left.svg -------------------------------------------------------------------------------- /public/images/cube/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/cube/right.svg -------------------------------------------------------------------------------- /public/images/cube/top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/cube/top.svg -------------------------------------------------------------------------------- /public/images/favicons/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/favicons/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /public/images/favicons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/favicons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /public/images/favicons/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/favicons/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /public/images/favicons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/favicons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /public/images/favicons/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/favicons/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /public/images/favicons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/favicons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /public/images/favicons/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/favicons/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /public/images/favicons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/favicons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /public/images/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/favicons/browserconfig.xml -------------------------------------------------------------------------------- /public/images/favicons/code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/favicons/code.txt -------------------------------------------------------------------------------- /public/images/favicons/favicon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/favicons/favicon-128.png -------------------------------------------------------------------------------- /public/images/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /public/images/favicons/favicon-196x196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/favicons/favicon-196x196.png -------------------------------------------------------------------------------- /public/images/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /public/images/favicons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/favicons/favicon-96x96.png -------------------------------------------------------------------------------- /public/images/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/favicons/favicon.ico -------------------------------------------------------------------------------- /public/images/favicons/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/favicons/mstile-144x144.png -------------------------------------------------------------------------------- /public/images/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /public/images/favicons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/favicons/mstile-310x150.png -------------------------------------------------------------------------------- /public/images/favicons/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/favicons/mstile-310x310.png -------------------------------------------------------------------------------- /public/images/favicons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/favicons/mstile-70x70.png -------------------------------------------------------------------------------- /public/images/logo-wordmark-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/logo-wordmark-vertical.svg -------------------------------------------------------------------------------- /public/images/logo-wordmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/logo-wordmark.svg -------------------------------------------------------------------------------- /public/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/images/logo.svg -------------------------------------------------------------------------------- /public/pine.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/pine.fbx -------------------------------------------------------------------------------- /public/shrub.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/shrub.fbx -------------------------------------------------------------------------------- /public/shrub2.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/shrub2.fbx -------------------------------------------------------------------------------- /public/stone.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/stone.fbx -------------------------------------------------------------------------------- /public/tree.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/public/tree.fbx -------------------------------------------------------------------------------- /src/client/entry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/src/client/entry.tsx -------------------------------------------------------------------------------- /src/client/imports/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/src/client/imports/App.tsx -------------------------------------------------------------------------------- /src/client/imports/Character.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/src/client/imports/Character.tsx -------------------------------------------------------------------------------- /src/client/imports/FirstPersonCamera.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/src/client/imports/FirstPersonCamera.tsx -------------------------------------------------------------------------------- /src/client/imports/Lights.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/src/client/imports/Lights.tsx -------------------------------------------------------------------------------- /src/client/imports/Rifle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/src/client/imports/Rifle.tsx -------------------------------------------------------------------------------- /src/imports/collections/mapItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/src/imports/collections/mapItems.ts -------------------------------------------------------------------------------- /src/imports/collections/players.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/src/imports/collections/players.ts -------------------------------------------------------------------------------- /src/server/entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/src/server/entry.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMECraft/first-person-shooter/HEAD/tsconfig.json --------------------------------------------------------------------------------