playMaker

Author Topic: [FIXED] EcoSystem 0.6.8 - Cannot implicitly convert type 'UnityEngine.WWW' t  (Read 1254 times)

MlleBun

  • Playmaker Newbie
  • *
  • Posts: 28
Hi,

I'm having this fatal error after importing EcoSystem 0.6.8 in the project. I'm using PlayMaker 1.9.0.p21.

Code: [Select]
Assets\net.fabrejean\Editor\PlayMaker\Ecosystem\EcosystemBrowser.cs(2501,25): error CS0029: Cannot implicitly convert type 'UnityEngine.WWW' to 'HutongGames.PlayMaker.Ecosystem.Utils.WWW'
I think that that could be solved by disabling the Beta features, but the fact is that I can't see the Ecosytem in the Addons after importing the package.

Could anyone guide me on that? Thanks !
« Last Edit: November 05, 2020, 02:42:47 AM by MlleBun »

MlleBun

  • Playmaker Newbie
  • *
  • Posts: 28
Hi @jeanfabre, is it linked to this ? https://hutonggames.com/playmakerforum/index.php?topic=22638.0 Thanks !

djaydino

  • Administrator
  • Hero Member
  • *****
  • Posts: 7615
    • jinxtergames
Hi.
You can try to remove the : net.fabrejean folder and reinstall Ecosystem

jeanfabre

  • Administrator
  • Hero Member
  • *****
  • Posts: 15500
  • Official Playmaker Support
Hi,

 yes, don't enable the beta features on the Ecosystem ...  sorry...

Bye

 Jean

MlleBun

  • Playmaker Newbie
  • *
  • Posts: 28
In fact, the error was in
Code: [Select]
// EcosystemBrowser.cs line 2508
wwwSearch = new WWW(url, _form.data);

To work, I changed this :
Code: [Select]
#if PLAYMAKER_ECOSYSTEM_BETA && !(UNITY_2017 && UNITY_2017_1)
to this. And that fixed my issue.
Code: [Select]
#if PLAYMAKER_ECOSYSTEM_BETA && (UNITY_2017 && UNITY_2017_1)
And then I saw your post ;)

Many thanks!
« Last Edit: November 04, 2020, 05:34:29 PM by MlleBun »