Compare commits
2 Commits
86fa716f03
...
b1dc69ed28
Author | SHA1 | Date | |
---|---|---|---|
b1dc69ed28 | |||
09667f9441 |
@ -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 ;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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"))
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user