I understand how you create flowcharts or data flow diagrams for simple linear based programming. But how do you design a flowchart for event based programming, like a game that runs on Unity3D? How would you structure it?
3
I would use a data flow diagram or class diagram instead of a flowchart. Flowcharts are intended to encompass logical operations, so they would only apply to game engines in isolated cases, like decision operations.
1