Version: 2021.1
LanguageEnglish
  • C#

Progress.SetStepLabel

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public static void SetStepLabel(int id, string label);

Parameters

id The progress indicator's unique ID.
label The steps label.

Description

Sets the label that displays a progress indicator's steps.

This label displays a progress indicator's reported steps. For example, a progress indicator that reports "Jobs" might display "11/25 Jobs" and a progress reporting "Assets" might display "8/20 Assets". To report progress in steps, use Progress.Report with the steps variant.

See Also: Progress.GetStepLabel, Progress.GetCurrentStep, Progress.GetTotalSteps, Progress.Item.stepLabel, Progress.Item.SetStepLabel.