Compare commits

..

No commits in common. "master" and "v0.2" have entirely different histories.
master ... v0.2

2 changed files with 6 additions and 8 deletions

View File

@ -13,7 +13,8 @@
],
"compilerPath": "C:/MinGW/bin/g++.exe",
"cStandard": "c11",
"cppStandard": "c++11"
"cppStandard": "c++11",
"intelliSenseMode": "gcc-x86"
}
],
"version": 4

View File

@ -153,13 +153,10 @@ int main(void)
gShader.bindTextures(textures_base_shader_names, sizeof(textures_base_shader_names)/sizeof(const char*));
// Загрузка сцены из obj файла
Scene scene = loadGLTFtoScene("../resources/models/rotating-cube_cubic-spline.gltf");
scene.root.e_position().y = -1;
scene.root.e_position().z = 3;
Scene scene = loadGLTFtoScene("../resources/models/blob.gltf");
scene.root.e_scale() = glm::vec3(0.01);
scene.root.e_position().z = 1;
scene.set_group_id((GLuint64) &scene.root);
// Включим первую анимацию, если есть
if (scene.animations.size())
scene.animations[0].begin();
// Установка цвета очистки буфера цвета
glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
@ -476,7 +473,7 @@ int main(void)
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
// Тут производится рендер
scene.render(gShader, material_data, true);
scene.render(gShader, material_data);
rectangle.render(gShader, material_data);
// Отрисовка отладочных лампочек со специальным шейдером