You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To enable and disable debug mode, click `debug` button in the upper right corner.
3
+
Ceres provides powerful debugging capabilities to help you troubleshoot your visual scripts.
4
4
5
-
Then, you can click `Next Frame` to execute the graph node by node.
5
+
### Enable Debug Mode
6
+
To enable and disable debug mode, click the `debug` button in the upper right corner. Then, you can click `Next Frame` to execute the graph node by node.
6
7
7
-
## Use Breakpoint
8
-
9
-
You can right click node and `Add Breakpoint`, and click `Next Breakpoint` in toolbar to execute the graph breakpoint by breakpoint.
8
+
### Breakpoints
9
+
You can right click any node and select `Add Breakpoint`, then click `Next Breakpoint` in the toolbar to execute the graph breakpoint by breakpoint.
10
10
11
11

12
12
13
-
## Use Graph Tracker
13
+
### Port Debugging
14
+
15
+
Ceres editor can display the current value of an input port when the mouse hovers over the port of the node at the current breakpoint.
16
+
17
+

18
+
19
+
### Graph Tracker
20
+
`FlowGraphTracker` is a class that can be used to track the execution of the graph for advanced debugging scenarios.
21
+
22
+
For more details, you can see the sample [FlowGraphDependencyTracker](https://github.com/AkiKurisu/Ceres/blob/main/Runtime/Flow/Models/FlowGraphTracker.cs).
23
+
24
+
### Hot Reload
25
+
26
+
Ceres supports hot reloading of `FlowGraphObject`. When you modify a `FlowGraphObject` in playing mode, the changes can be reflected immediately.
14
27
15
-
`FlowGraphTracker` is a class that can be used to track the execution of the graph.
28
+
To enable hot reload, you need toggle the `Hot Reload` option in Flow Editor's toolbar and then try to save your graph in playing mode.
16
29
17
-
For more details, you can see the sample [FlowGraphDependencyTracker](https://github.com/AkiKurisu/Ceres/blob/main/Runtime/Flow/Models/FlowGraphTracker.cs).
0 commit comments