- Matéo Erbisti
- Lenny Rabinne
- Antoine Mordant
- Bryan Bachelet
Portfolio Link: https://merbistigp.editorx.io/portfolio-mateo/blank-3-3-1-1-1-1-1
Our engine has a lot of render features in order to facilitate the creation of an amazing environment for the game created in the engine. The main feature is the Physically Based Rendering that allows our engine to have a realistic look. The second important render feature is Deferred Rendering, which allows us to have a lot of lights in our scenes. We have also other effects like Shadow Mapping, SSAO, or Normal Mapping.
Our engine has realistic physics available for the user. For this feature, we use the PhysX library from Nvidia which computes all of the physics calculations. Our engine can be linked to Nvidia Physics Debugger software in order to help users when they work on physics problems and need to debug.
• Render pipeline (Physically Based Rendering, Deferred Rendering, Shadow Mapping, Normal/Parallax Mapping, HDR, and every other graphics feature)
• Animation System: Animator, Skeletons, and Animations. With our Animator component, you can choose which animation you want to play and its speed and you can make transitions between animations.
• Resources loading including Models, Textures, Skeletons, Animations, Fonts...
• UI System which can display texts with different fonts and images on the screen thanks to our Text and Image components
• Material System which is useful to tweak some values such as the albedo, the roughness or metalness, or even if the object generates shadows or not. You can also edit the albedo, normal, height, metalness, roughness, and ambient occlusion maps. Depending on the model, you'll have different slots to put materials in our Mesh component.
• Project Architecture
For this project, we use multiple libraries to handle functionalities. Let's list them :- OpenGL 4.5 - This is the graphics API, we use in our engine
- GLFW - For the software window
- PhysX - That is the library that manages our engine physics. This library is from Nvidia
- FreeType - This library is used to handle font files and show text on the screen
- RapidObj & Assimp - These libraries manage the loading of game models in our engine
- STBImage - Load images and textures
- Refureku - Library that allows the reflection on our engine
- ImGui - Editor UI interface library




