playMaker

Author Topic: Unused variable in ecosystem  (Read 1004 times)

rechronicle

  • Full Member
  • ***
  • Posts: 119
  • Mystvaldia
    • Indie RPG Creator
Unused variable in ecosystem
« 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!

djaydino

  • Administrator
  • Hero Member
  • *****
  • Posts: 7615
    • jinxtergames
Re: Unused variable in ecosystem
« Reply #1 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.

rechronicle

  • Full Member
  • ***
  • Posts: 119
  • Mystvaldia
    • Indie RPG Creator
Re: Unused variable in ecosystem
« Reply #2 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!