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
modifyable can be NK_FIXED or NK_MODIFIABLE. If the modifier is set to NK_MODIFIABLE the user can change the value of the progress bar by clicking on it (like the slider)
To render the progressbar just call nk_progress
if( nk_progress(ctx, ¤tValue, maxValue , modifyable ) )
{
// the value of the progress bar changed, the new value is stored in currentValue
}