Skip to content

Commit

Permalink
Merge pull request #237 from ZdenekM/master
Browse files Browse the repository at this point in the history
Various stuff
  • Loading branch information
ZdenekM authored Apr 14, 2022
2 parents e03462c + 201b40e commit 274d8b0
Show file tree
Hide file tree
Showing 13 changed files with 97 additions and 839 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
[Bb]uilds/
[Ll]ogs/
[Mm]emoryCaptures/
/[Uu]ser[Ss]ettings/
/arcor2_AREditor/[Aa]ssets/[Ss]ubmodules*

# Never ignore Asset meta data
Expand Down
6 changes: 4 additions & 2 deletions arcor2_AREditor/Assets/BASE/Scripts/ProjectManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -985,8 +985,10 @@ public void EnableAllActions(bool enable) {
foreach (Action action in ap.Actions.Values)
action.Enable(enable);
}
StartAction.Enable(enable);
EndAction.Enable(enable);
if (StartAction != null)
StartAction.Enable(enable);
if (EndAction != null)
EndAction.Enable(enable);
}

/// <summary>
Expand Down

Large diffs are not rendered by default.

Loading

0 comments on commit 274d8b0

Please sign in to comment.