Vixen
02b45cc4
csharp
public readonly record struct StatisticRow

One counted thing, and the ceiling it was measured against.

No guide page documents this yet — the page shows what the code says about itself.

Fields and properties (6)

  • public string Label

    What is being counted.

  • public long Value

    How many there are.

  • public long? Budget

    The ceiling, or for a figure with no opinion.

  • public string? Detail

    A sentence about it, or .

  • public BudgetState State

    How the value compares with the budget.

  • public float Fill

    How full the budget is, from zero to one, clamped. Zero without a budget.

Methods (1)

  • public StatisticRow(string Label, long Value, long? Budget = null, string? Detail = null)

    One counted thing, and the ceiling it was measured against.

Used by (5)

  • DiagnosticsPanelTestsVixen.Editor.App.Tests
  • EditorApplicationVixen.Editor.App
  • SceneStatisticsVixen.Editor.Profiler
  • StatisticsAndMemoryTestsVixen.Editor.Profiler.Tests
  • StatisticsViewVixen.Editor.Profiler