start
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| start [2025/11/25 10:06] – diviner | start [2025/11/25 11:22] (current) – diviner | ||
|---|---|---|---|
| Line 9: | Line 9: | ||
| === What is provided === | === What is provided === | ||
| - | * A complete data-driven [[ECS Data Model]] with [[Entities]] and [[Components]] being the primary way of modeling the software. | + | |
| - | * Native [[Serialization]] that converts all Entities and Components into compact portable serializable structures. | + | |
| - | * A [[Dependency Injection]] framework that allows building complex, scalable business logic. | + | |
| - | * A [[Message Broker]] serving as the core of the entire architecture, | + | |
| - | * UDP [[Networking]] support with a highly scalable and performant [[RPC]] infrastructure. | + | |
| - | * [[Input Management]] and [[Game State Management]] providing not only engine agnostic input detection, but also a scalable [[Input Command]] framework and management tooling to manage the complexity of highly interactive projects. | + | |
| - | * [[MVVM]] architectural support that enables the codebase to interface with game engine code in a completely decoupled way. | + | |
| - | * A scalable, robust and performant [[Physics System]] for 3D Rigidbody Physics, offering Raycasting, Collision Events and realtime physics simulations. | + | |
| - | * Portable [[Navmesh Navigation]] through A* Pathfinding for AI Agent movement and collision predictions. | + | |
| - | * FSM based [[AI]] offering highly modular and craftable decision making trees for complex AI agent interactions. | + | |
| - | * Unity plugins that import and extend these portable features for engine interfacing. | + | |
| - | === What is **not** provided === | + | |
| - | * Server modules. The architecture is created with authoritative servers in mind, providing the ability to write game logic once and have it run both on server and client side without requiring to run the game engine on the server. Since each online game is unique in its own way and requirements, | + | * A [[Dependency Injection]] framework that allows building complex, scalable business logic. |
| - | * Platform deployment. The architecture depends on 3rd party support for deploying software using its features. | + | |
| - | * Rendering | + | * A [[Message Broker]] serving as the core of the entire architecture, |
| - | * Game Engine integration other than Unity. The architecture was built for use primarily with the Unity Game Engine. Even though its portable nature allows it to interface with other engines too (Godot, custom ones), the necessary adapter code has to be implemented individually. | + | |
| + | * Chunk based [[Scene Management]] that allows you to create anything from highly detailed single scene experiences, | ||
| + | |||
| + | * UDP [[Networking]] support with a highly scalable and performant [[RPC]] infrastructure. | ||
| + | |||
| + | * [[Input Management]] and [[Game State Management]] providing not only engine agnostic input detection, but also a scalable [[Input Command]] framework and management tooling to manage the complexity of highly interactive projects. | ||
| + | |||
| + | * [[MVVM]] architectural support that enables the codebase to interface with game engine code in a completely decoupled way. | ||
| + | |||
| + | * A 3D Vector Math Library building on top of System.Numerics. | ||
| + | |||
| + | * A scalable, robust and performant [[Physics System]] for 3D Rigidbody Physics, offering Raycasting, Collision Events and realtime physics simulations. | ||
| + | |||
| + | * Portable [[Navmesh Navigation]] through A* Pathfinding for AI Agent movement and collision predictions, | ||
| + | |||
| + | * FSM based [[AI]] offering highly modular and craftable decision making trees for complex AI agent interactions. | ||
| + | |||
| + | * Unity plugins that import and extend these portable features for engine interfacing. | ||
| + | |||
| + | === What is not provided === | ||
| + | |||
| + | | ||
| + | |||
| + | | ||
| + | |||
| + | | ||
| + | |||
| + | * Audio Systems. Much like Graphics Rendering, if audio output is required, support must be given through 3rd party libraries. | ||
| + | |||
| + | | ||
start.1764065178.txt.gz · Last modified: by diviner
