We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a49d957 commit 9e0d192Copy full SHA for 9e0d192
Assets/FbxExporters/FbxPrefab.cs
@@ -92,6 +92,12 @@ public bool AutoUpdate {
92
/// </summary>
93
public static event HandleUpdate OnUpdate;
94
95
+ /// <summary>
96
+ /// Notify listeners that they're free to make adjustments.
97
+ /// This will be called after the FbxPrefab auto updater has completed it's work.
98
+ /// </summary>
99
+ /// <param name="instance">Updated FbxPrefab instance.</param>
100
+ /// <param name="updatedObjects">Updated objects.</param>
101
public static void CallOnUpdate(FbxPrefab instance, IEnumerable<GameObject> updatedObjects){
102
if (OnUpdate != null) {
103
OnUpdate (instance, updatedObjects);
0 commit comments