finished assimp chapter

This commit is contained in:
Daniel 2023-09-15 09:38:56 +02:00
parent 725c8d8fa3
commit da0815ac8b
2 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@
</ImportGroup> </ImportGroup>
<PropertyGroup Label="UserMacros" /> <PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<IncludePath>$(OPENGL_LIBS)\glad\include;$(OPENGL_LIBS)\glfw\include;$(OPENGL_LIBS)\glm;$(IncludePath)</IncludePath> <IncludePath>$(OPENGL_LIBS)\assimp;$(OPENGL_LIBS)\glad\include;$(OPENGL_LIBS)\glfw\include;$(OPENGL_LIBS)\glm;$(IncludePath)</IncludePath>
<LibraryPath>$(OPENGL_LIBS)\glfw\lib;$(LibraryPath)</LibraryPath> <LibraryPath>$(OPENGL_LIBS)\glfw\lib;$(LibraryPath)</LibraryPath>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">

View File

@ -17,7 +17,7 @@
#include "vertices.h" #include "vertices.h"
// Continue: https://learnopengl.com/Model-Loading/Assimp // Continue: https://learnopengl.com/Model-Loading/Mesh
// Chapter: Not yet started // Chapter: Not yet started
// //
// For the "real" Nebulix Engine setup everything so it can be compiled/used with VSCode/CLion and not just VS // For the "real" Nebulix Engine setup everything so it can be compiled/used with VSCode/CLion and not just VS