ImGuiHoveredFlagsHoverFlagsForTooltipMouse;// Default flags when using IsItemHovered(ImGuiHoveredFlags_ForTooltip) or BeginItemTooltip()/SetItemTooltip() while using mouse.
ImGuiHoveredFlagsHoverFlagsForTooltipNav;// Default flags when using IsItemHovered(ImGuiHoveredFlags_ForTooltip) or BeginItemTooltip()/SetItemTooltip() while using keyboard/gamepad.
ImVec2ScrollStepSize;// Step size for scrolling, 0.0f uses default ImGui behaviour.
floatScrollSmooth;// Smooth scrolling amount: 1.0f no smoothing. Anything above 1.0f will make the scroll delta more smooth.
ImVec2ScrollExpected;// Current Expected Scroll position
ImVec2ScrollMax;
ImVec2ScrollStepSize;
ImVec2ScrollTarget;// target scroll position. stored as cursor position with scrolling canceled out, so the highest point is always 0.0f. (FLT_MAX for no change)
ImVec2ScrollTargetCenterRatio;// 0.0f = scroll so that target position is at top, 0.5f = scroll so that target position is centered
ImVec2ScrollTargetEdgeSnapDist;// 0.0f = no snapping, >0.0f snapping threshold
HoverDelayNormal=0.40f;// Delay for IsItemHovered(ImGuiHoveredFlags_DelayNormal). "
HoverFlagsForTooltipMouse=ImGuiHoveredFlags_Stationary|ImGuiHoveredFlags_DelayShort|ImGuiHoveredFlags_AllowWhenDisabled;// Default flags when using IsItemHovered(ImGuiHoveredFlags_ForTooltip) or BeginItemTooltip()/SetItemTooltip() while using mouse.
HoverFlagsForTooltipNav=ImGuiHoveredFlags_NoSharedDelay|ImGuiHoveredFlags_DelayNormal|ImGuiHoveredFlags_AllowWhenDisabled;// Default flags when using IsItemHovered(ImGuiHoveredFlags_ForTooltip) or BeginItemTooltip()/SetItemTooltip() while using keyboard/gamepad.
ScrollSmooth=1.0f;// Disabled by default. It's just immediate jump from ScrollExpected to the visual Scroll.
ScrollStepSize=ImVec2(0.0f,0.0f);// Disabled by default.
ScrollSmooth=1.0f;// Disabled by default. It's just immediate jump from ScrollExpected to the visual Scroll.