You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@JosephXQ2021 Hi , do you know how to catch a double click node event?thanks
yes, it's as simple as this:
// Double clicking on the node will make it collapse/expand
if(ImGui::IsMouseDoubleClicked(ImGuiMouseButton_Left))
{
show_node_contents_ = !show_node_contents_;
}
Hi, is it possible to have a canvas inside of a node? If yes, how? Thanks for your answer!
The text was updated successfully, but these errors were encountered: