2024-04-12 09:08:06 -07:00
# GASATHON
2024-10-19 18:05:43 -07:00
Completing this [course ](https://www.udemy.com/course/unreal-engine-5-gas-top-down-rpg/ )
2024-04-13 02:57:29 -07:00
2024-10-19 18:05:43 -07:00
The project is organized as a monolithic module with an auxillary editor module and a Codegen module not handled by Unreal utilizing the [gencpp ](https://github.com/Ed94/gencpp.git ) library.
2024-04-13 02:57:29 -07:00
Implementation design perfs:
2024-04-13 07:19:45 -07:00
* Keep data structures and codepaths flat with minimal abstraction patterns
2024-04-21 07:05:42 -07:00
* Lift to more specific or generalized code-paths only when necessary
2024-04-13 02:57:29 -07:00
* Keep everything data-wise in the runtime unless there is a measurable performance cost.
* Some exploratory optimizations for educational purposes.
* Plugins are installed in the engine repo unless not possible.
2024-04-13 07:19:45 -07:00
* Code almost exclusively in C++ for everything but cosmetics (this is an engineering portfolio piece).
2024-04-13 02:57:29 -07:00
* Keep static module functions within C++ namesapces and have the in BP function libraries to expose to BPs.
2024-04-13 03:02:06 -07:00
* Perfer stage-metaprogramming to C++ compiler provided templating (when possible).
2024-04-21 07:05:42 -07:00
2024-10-19 18:05:43 -07:00
The repo is also hosted on : [https://git.cozyair.dev/ed/GASATHON ](https://git.cozyair.dev/ed/GASATHON )
It should be mirrored here however to latest.