Character Simulator(Walk Simulator) 🎮 is an exciting game developed using the three.js technology stack, offering players an immersive virtual world to explore. In this game, you'll experience precise collision detection between the scenery and the characters, ensuring a realistic and smooth gaming experience. Additionally, the game features a dual-person perspective switch, allowing you to seamlessly switch between the first-person and third-person views, enhancing your ability to explore the game world. To optimize performance, the camera occlusion optimization feature has been cleverly applied, providing you with smoother game visuals and animations. Moreover, "Walk Simulator" incorporates elements of NES game simulation, allowing you to relive the nostalgia of classic games. Whether you're exploring unknown worlds or taking on various gaming challenges, you'll find joy and excitement in Character Simulator(Walk Simulator)!
🇨🇳中文
walk: W
/S
/A
/D
jump: Space
view: left mouse button
Switch person perspective: V
Trigger Interaction: F
- First and Third Person Perspective Switch.
- High-Performance Collision Detection.
- Third-Person Camera Occlusion Handling.
- Interactive Box Detection.
- NES Game Emulation.
Although this project is developed using Vue3
and TypeScript
, the core functionalities are still encapsulated using an object-oriented approach. Vue code is less invasive, allowing for easier migration to other technology stacks for developers.
├── src # Source code
│ ├── application # Core game source code section
| | │── audio # Audio class (create positional audio)
| | │── character # Character class (character model control)
| | │── control # Keyboard control class (keyboard key state management)
| | │── core # Core base class (includes camera, renderer, scene, etc.)
| | │── emitter # Event emitter class (dispatch various events)
| | │── environment # Environment class (create map models, lights, scene textures)
| | │── interactionDetection # Interaction detection class (intersection detection between character box and interaction box triggers)
| | │── loader # Loader class (fbx, glb, audio, etc. loader management)
| | │── utils # Utility functions
| | | └── typeAssert.ts # Type inference utility functions
| | │── world # Core game class (used to manage core elements in the game world, including environment, character, interaction detection, and audio components)
| | └── Constants.ts # Constant definitions (define model/texture/media resource paths, event dispatch names, etc.)
│ ├── assets # Resource folder
| | │── audio # Audio files
| | │── font # Font files
| | │── img # Image files
| | │── models # Model files
| | │── nes # Nes game files
| | └── main.css # Global stylesheet
│ ├── components # vue组件
| | │── LoadProgress.vue # Loading component
| | │── NesGameDialog.vue # Nes game dialog component (run Nes games)
| | └── NotifyTips.vue # Interaction notification component
│ ├── App.vue # Entry page
│ └── main.js # Entry file (load components, global styles, initialization, etc.)
Open source is not easy, your support is my continuous motivation! This project is an open source project, donations are voluntary.
npm install
npm run dev
npm run build