csharp
public record class PrefabReconcileReportWhat one reconcile of a scene against its prefabs did.
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 InstancesHow many entities in the scene carry a prefab link.
public int TemplatesHow many distinct prefabs were opened and reconciled against.
public int WrittenHow many members took their template's value.
public IReadOnlyList<PrefabReport> ReportsWhat could not be resolved inside a template that was opened.
public IReadOnlyList<PrefabUnresolved> UnresolvedThe prefabs that could not be opened at all.
public static PrefabReconcileReport NoneA reconcile that did nothing and had nothing to say.
public bool ChangedWhether 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