Compare commits

...

2 Commits

2 changed files with 6 additions and 9 deletions

View File

@ -5,7 +5,7 @@ namespace polygun::engine {
for (int x = 0; x < CHUNK_SIZE; x++) {
for (int y = 0; y < CHUNK_SIZE; y++) {
for (int z = 0; z < CHUNK_SIZE; z++) {
chunk_data[x][y][z] = 1;
chunk_data[x][y][z] = 0 ;
}
}
}

View File

@ -242,16 +242,13 @@ namespace polygun::engine {
ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / ImGui::GetIO().Framerate, ImGui::GetIO().Framerate);
// Camera pos
ImGui::Text("Player Pos: %.3f, %.3f, %.3f", m_camera.m_position.x, m_camera.m_position.y, m_camera.m_position.z);
float x_d, y_d, z_d;
int id_d;
int x_d, y_d, z_d, id_d;
ImGui::InputInt("ID", &id_d);
ImGui::InputFloat("X", &x_d);
ImGui::InputFloat("Y", &y_d);
ImGui::InputFloat("Z", &z_d);
ImGui::InputInt("X", &x_d);
ImGui::InputInt("Y", &y_d);
ImGui::InputInt("Z", &z_d);
if (ImGui::Button("Place Block"))
{