Vixen
dd8b0a81
csharp
public record class PrefabReconcileReport

What one reconcile of a scene against its prefabs did.

Read the guide page for this →

Remarks

Changed is the one a caller usually wants: a scene whose prefabs have not moved reconciles to nothing, and telling somebody about that is noise.

Fields and properties (7)

  • public int Instances

    How many entities in the scene carry a prefab link.

  • public int Templates

    How many distinct prefabs were opened and reconciled against.

  • public int Written

    How many members took their template's value.

  • public IReadOnlyList<PrefabReport> Reports

    What could not be resolved inside a template that was opened.

  • public IReadOnlyList<PrefabUnresolved> Unresolved

    The prefabs that could not be opened at all.

  • public static PrefabReconcileReport None

    A reconcile that did nothing and had nothing to say.

  • public bool Changed

    Whether anything happened that is worth telling a person about.

Methods (1)

  • public PrefabReconcileReport(int Instances, int Templates, int Written, IReadOnlyList<PrefabReport> Reports, IReadOnlyList<PrefabUnresolved> Unresolved)

    What one reconcile of a scene against its prefabs did.

Used by (4)

  • EditorApplicationVixen.Editor.App
  • PrefabPlacementTestsVixen.Editor.AssetEditors.Tests
  • PrefabReconcileVixen.Editor.Core
  • SceneDocumentVixen.Editor.SceneView