Unreal GAS Course Binge
Go to file
2024-04-13 10:10:04 -04:00
Project Update readme 2024-04-13 05:57:29 -04:00
scripts 13. "Highlight Enemies" 2024-04-12 22:05:09 -04:00
.gitattributes Initial commit 2024-04-12 12:08:06 -04:00
.gitignore 14. Post-Process Highlight 2024-04-13 02:31:49 -04:00
Readme.md Update readme again 2024-04-13 06:02:06 -04:00
Rengerate Unreal Project Files.lnk Initial commit 2024-04-12 12:08:06 -04:00
Run Editor.lnk Initial commit 2024-04-12 12:08:06 -04:00

GASATHON

Binging this course

The project is organized as a monolothic module with an auxillary editor module.

Implementation design perfs:

  • Flat data structures with abstraction patterns only when necessary.
    • Minimize distinct code-paths
    • Use classes as "filters", keep things "mega-structed"
    • Never pre-emtively make interfaces or interface-like patterns
  • 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.
  • Code almost exclusively in C++ for everything but cosmetics (this is a engineering portfolio).
  • Keep static module functions within C++ namesapces and have the in BP function libraries to expose to BPs.
  • Perfer stage-metaprogramming to C++ compiler provided templating (when possible).