How can I change a widgets progress percent using c++

Its probably something really simple but ive been searching for over 30minutes and I cant find it. I know how to make widgets show but I have no idea how to edit them using only c++. Most guides or documentation uses the “set percent” bubble for blueprints but I cant seem to find its equivalent in c++.

Hey,

try checking this out: UProgressBar | Unreal Engine Documentation

There’s method SetPercent that should do what you need, just need to pass the progress bar into c++ code.

Hope it helps.