Playmaker Forum

Bug Reporting => PlayMaker Bug Reporting => Topic started by: rechronicle on November 09, 2020, 05:53:03 AM

Title: Unused variable in ecosystem
Post by: rechronicle on November 09, 2020, 05:53:03 AM
Is there any way to disable this warning from ecosystem? It's not a game-breaking bug, but it's still annoying to see it pop up every time I hit the play button.

Assets\net.fabrejean\Editor\PlayMaker\Ecosystem\EcosystemBrowser.cs(2645,16): warning CS0414: The field 'EcosystemBrowser._searchParsed' is assigned but its value is never used

Thanks!
Title: Re: Unused variable in ecosystem
Post by: djaydino on November 09, 2020, 08:53:43 AM
Hi.
It is a variable in the code that is never used.
you could remove it from the code.
or
wait for a update :)

you can disable warnings on the console, this way you won't get any yellow warings.
Title: Re: Unused variable in ecosystem
Post by: rechronicle on November 10, 2020, 10:55:39 AM
Whoa, barely know that we can adjust the console warning. It might come in handy later on.

Succeeded in disabling it within the script. Hope it will be updated in the future version. Thanks again!