Unity - Scripting API: Unity.GraphToolkit.Editor.Graph.OnGraphChanged
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.
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.
Declaration
public void OnGraphChanged(GraphLogger graphLogger);
Parameters
| Parameter | Description |
|---|---|
| graphLogger | The GraphLogger that receives any errors or warnings related to the graph. |
Description
Called after the graph has changed.
Unity calls this method after any change to the graph. Override it to validate the graph's integrity and report issues using the provided GraphLogger. Use this method to detect invalid configurations, highlight issues in the editor, or provide user feedback. Do not modify the graph within this method, as it may cause instability or recursive updates.