18 lines
352 B
C++
18 lines
352 B
C++
//
|
|
// Created by martin on 12.11.21.
|
|
//
|
|
|
|
#include "SpeedScaleNode.h"
|
|
|
|
#include <imgui.h>
|
|
|
|
void SpeedScaleNode::DrawDebugUi() {
|
|
std::string node_name = "SpeedScaleNode: " + m_name;
|
|
if (ImGui::TreeNode(node_name.c_str())) {
|
|
ImGui::SliderFloat("Time Scale", &m_time_scale, -5.f, 5.f);
|
|
|
|
m_child_node->DrawDebugUi();
|
|
|
|
ImGui::TreePop();
|
|
}
|
|
} |