Playmaker Forum

Bug Reporting => PlayMaker Bug Reporting => Topic started by: MlleBun on October 09, 2020, 08:24:28 AM

Title: [FIXED] EcoSystem 0.6.8 - Cannot implicitly convert type 'UnityEngine.WWW' t
Post by: MlleBun on October 09, 2020, 08:24:28 AM
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 !
Title: Re: [Bug] EcoSystem 0.6.8 error - Cannot implicitly convert type 'UnityEngine.WWW' t
Post by: MlleBun on October 17, 2020, 02:37:42 AM
Hi @jeanfabre, is it linked to this ? https://hutonggames.com/playmakerforum/index.php?topic=22638.0 Thanks !
Title: Re: [Bug] EcoSystem 0.6.8 error - Cannot implicitly convert type 'UnityEngine.WWW' t
Post by: djaydino on October 17, 2020, 04:33:32 PM
Hi.
You can try to remove the : net.fabrejean folder and reinstall Ecosystem
Title: Re: [Bug] EcoSystem 0.6.8 error - Cannot implicitly convert type 'UnityEngine.WWW' t
Post by: jeanfabre on November 04, 2020, 01:50:18 PM
Hi,

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

Bye

 Jean
Title: Re: [Bug] EcoSystem 0.6.8 error - Cannot implicitly convert type 'UnityEngine.WWW' t
Post by: MlleBun on November 04, 2020, 05:32:42 PM
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!