Skip to content

Commit

Permalink
Fix asmdef for new scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
pema99 committed Sep 8, 2024
1 parent 19898d6 commit cdf889b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Packages/com.llealloo.audiolink/Runtime/AudioLink.asmdef
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"references": [
"UdonSharp.Runtime",
"UdonSharp.Lib",
"VRC.Udon"
"VRC.Udon",
"Unity.Postprocessing.Runtime"
],
"includePlatforms": [],
"excludePlatforms": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ namespace AudioLink
{
#if UDONSHARP
using UdonSharp;
using UnityEngine.Rendering.PostProcessing;

[RequireComponent(typeof(SkinnedMeshRenderer))]
public class AudioReactiveBlendshapes : UdonSharpBehaviour
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace AudioLink
{
#if UNITY_POST_PROCESSING_STACK_V2
#if UDONSHARP
using UdonSharp;
using UnityEngine.Rendering.PostProcessing;
Expand Down Expand Up @@ -38,4 +39,5 @@ void Update()
}

}
#endif
}

0 comments on commit cdf889b

Please sign in to comment.