playMaker

Author Topic: WWWObject and Texture  (Read 1339 times)

ubernurbs

  • Playmaker Newbie
  • *
  • Posts: 11
WWWObject and Texture
« on: January 20, 2015, 09:13:24 PM »
I am using the free Unity version. (playmaker 1.7.7.f6)

Problem:

1) create variable type texture
2) wwwObject Store Texture (in the variable)
3) Set material texture

Result: error Movie Playback is only possible with unity Pro.

I don't use a movie texture, so why this message?

Cheers

Hans






« Last Edit: January 21, 2015, 06:00:16 PM by ubernurbs »

ubernurbs

  • Playmaker Newbie
  • *
  • Posts: 11
Re: WWWObject and Texture
« Reply #1 on: January 23, 2015, 10:07:30 AM »
For the WWWObject.cs none of the data downloads worked, the use of the MovieTexture blocked all of them for the Unity Free version.

Adding a Procheck around the movie texture code worked.

Code: [Select]
#if UNITY_PRO_LICENSE
MovieTexture code
#endif

Cheers
Hans