Closed M-Wicenec closed 4 weeks ago
This pull request implements several changes to the graph building tutorial in the Eagle application. The changes include updating the tutorial steps, modifying UI element interactions, and adjusting visual representations of graph components.
classDiagram
class TutorialStep {
+setPreFunction(function)
+setWaitType(Wait)
+setDelayAmount(int)
+setType(Type)
+setBackPreFunction(function)
+setConditionFunction(function)
+setAlternateHighlightTargetFunc(function)
}
class SideWindow {
+setShown(position: string, visible: boolean)
}
class Eagle {
+resetEditor()
}
TutorialStep --> SideWindow : uses
TutorialStep --> Eagle : uses
note for TutorialStep "Updated methods for tutorial steps"
note for SideWindow "Newly imported for side window interactions"
note for Eagle "Used for resetting editor state"
Change | Details | Files |
---|---|---|
Update tutorial steps and UI interactions |
|
src/tutorials/graphBuilding.ts |
Modify visual representation of graph components |
|
src/tutorials/graphBuilding.ts |
Summary by Sourcery
Enhance the graph building tutorial by adjusting delay times for smoother transitions and improving the clarity of node port descriptions. Comment out steps related to key attributes to streamline the tutorial flow.
Enhancements: