keijiro / KlakLasp

An extension for the Klak Wiring system to create audio reactive behaviors.
MIT License
162 stars 23 forks source link

Issue with 'AudioInput' namespace #4

Open lkewis opened 5 years ago

lkewis commented 5 years ago

Issue: Console error appears on import of KlakLasp.unitypackage

Error Message:

Assets/Klak/Audio/AudioInput.cs(82,26): error CS0234: The type or namespace name 'AudioInput' does not exist in the namespace 'Lasp' (are you missing an assembly reference?)

Fix: Change line 82 of AudioInput.cs

get { return Lasp.AudioInput.CalculateRMSDecibel(_filterType); }

to ->

get { return Lasp.MasterInput.CalculateRMSDecibel(_filterType); }

version: Unity 2019.2.9f1

hoverbird commented 4 years ago

I ran into this same issue... but @lkewis' fix did not work for me. Trying to debug whether this is due to a related plugin (LASP v2 maybe?)

AnthonyAvram commented 4 years ago

On Sun, Apr 5, 2020 at 4:17 PM Patrick Ewing notifications@github.com wrote:

I ran into this same issue... but @lkewis https://github.com/lkewis' fix did not work for me. Trying to debug whether this is due to a related plugin (LASP v2 maybe?)

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/keijiro/KlakLasp/issues/4#issuecomment-609501431, or unsubscribe https://github.com/notifications/unsubscribe-auth/AI277CYDUN2SFARJHHKYVNLRLEGPBANCNFSM4JHL7H3A .

Wrong email address

vvanhee commented 1 year ago

I'm having the same issue after installing Lasp then KlakLasp... The 'fix' didn't work for me.