diff options
author | Max-001 <80035972+Max-001@users.noreply.github.com> | 2024-11-05 11:33:16 +0100 |
---|---|---|
committer | Max-001 <80035972+Max-001@users.noreply.github.com> | 2024-11-05 11:33:16 +0100 |
commit | 65fd4db4aead74c0bb28c8f099522536d5ce5f6c (patch) | |
tree | 7f9a7510b18e8eefbcd7129cf987c9f3f3b69e34 /img/activity-scripts.puml | |
parent | 8fd4ebc33c2eba64e6be15c750ae8a821b72fd36 (diff) | |
parent | e696e7a6ac438c4af2e3d597c12950ad72b88520 (diff) |
Merge branch 'master' of https://github.com/lonkaars/crepe-docs into max/time
Diffstat (limited to 'img/activity-scripts.puml')
-rw-r--r-- | img/activity-scripts.puml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/img/activity-scripts.puml b/img/activity-scripts.puml new file mode 100644 index 0000000..b833bdf --- /dev/null +++ b/img/activity-scripts.puml @@ -0,0 +1,21 @@ +@startuml +!include theme.ipuml + +start + +label continue +:Get list of ""BehaviorScript"" components from ""ComponentManager""; + +while (for each ""BehaviorScript"" in list) + if (""BehaviorScript"" is active) then (yes) + if (""BehaviorScript"" has an instance of ""Script"") then (yes) + :Call update function of ""BehaviorScript""'s ""Script"" instance; + else (no) + endif + else (no) + endif +endwhile + +stop + +@enduml |