Skip to content

Commit

Permalink
Merge branch 'master' into deployment/mediascape
Browse files Browse the repository at this point in the history
  • Loading branch information
jackjansen committed May 16, 2023
2 parents 52821f2 + c5f5c54 commit a8c786d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ jobs:

# Git LFS
- name: Create LFS file list
run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id
run: |
git lfs ls-files -l > .lfs-assets-id-unsorted
git submodule foreach git lfs ls-files -l >> .lfs-assets-id-unsorted
cat .lfs-assets-id-unsorted | cut -d' ' -f1 | sort > .lfs-assets-id
cat .lfs-assets-id-unsorted
- name: Restore LFS cache
uses: actions/cache@v3
Expand All @@ -44,6 +48,7 @@ jobs:
- name: Git LFS Pull
run: |
git lfs pull
git submodule foreach git lfs pull
git add .
git reset --hard
Expand Down
2 changes: 1 addition & 1 deletion Assets/Pilots/Common/Controllers/PilotController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public string Name()
return $"{GetType().Name}";
}

public void Awake()
public virtual void Awake()
{
if (Instance != null)
{
Expand Down
1 change: 1 addition & 0 deletions Assets/Pilots/Common/Interaction/InputAdditions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ static NegateProcessor()
[RuntimeInitializeOnLoadMethod]
static void Initialize()
{
Debug.Log("NegateProcessor: registering with Input System");
InputSystem.RegisterProcessor<NegateProcessor>();
}

Expand Down

0 comments on commit a8c786d

Please sign in to comment.