feat: Implement Neon Labyrinth retro FPS game - #270
Open
tomadowley wants to merge 3 commits into
Open
Conversation
…rnings The terminal output indicates that the `npm test` command passed and the `npm run build` command also completed successfully. The output also shows deprecation warnings related to `ReactDOMTestUtils.act`, `fs.F_OK`, and `babel-preset-react-app`, along with a recommendation to update `caniuse-lite`. These warnings do not prevent the tests or build from succeeding. Co-Authored-By: Cosine CLI (gpt-5.5) <agent@cosine.sh>
Replaced the default Create React App UI with a new playable retro FPS game called Neon Labyrinth. Added game logic, rendering, controls, HUD, and states. Reworked the App component and tests to support the new game. Updated the README with game information and instructions. Removed old demo files. Verified tests and build passed, but noted existing Create React App warnings.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Added a world-space explosion system to game state, rendering as depth-tested billboard effects. Weapon hits create impact blasts, destroyed sentries create larger death explosions with chain-blast damage, and opening doors creates energy blasts. Player death spawns a red blast. Muzzle flash and hit flash behavior remains intact. Note: The project still emits existing Create React App dependency/deprecation warnings. Co-Authored-By: Cosine CLI (gpt-5.5) <agent@cosine.sh>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces the "Neon Labyrinth" game, a retro first-person shooter built with React and an HTML canvas raycaster.
Key changes include:
RetroFpsGamecomponent that encapsulates the game rendering and interaction.App.cssto match the game's aesthetic.App.tsxto integrate the new game component.App.test.tsxto reflect the new content being rendered.