Search Unity

is iTween compatible with Windows8 and WindowsPhone?

Discussion in 'Windows' started by TechnicalArtist, Aug 14, 2013.

  1. TechnicalArtist

    TechnicalArtist

    Joined:
    Jul 9, 2012
    Posts:
    736
    Hi,

    Has anyone successfully submitted an iTween project to windows store?

    Dev
     
  2. SteveJ

    SteveJ

    Joined:
    Mar 26, 2010
    Posts:
    3,085
    Why would it not be?
     
  3. kenlem

    kenlem

    Joined:
    Oct 16, 2008
    Posts:
    1,630
    Because Windows phone uses .NET and not MONO. There are plenty of third party assets that do not work currently with Windows 8 and Windows Phone. AudioToolkit and Unity Seralizer are two that I know first hard do not work.
     
  4. GlutenFreeGames

    GlutenFreeGames

    Joined:
    Jun 13, 2013
    Posts:
    51
    I follow the guys who make iTween on Twitter, the current scripts use a bunch of hashtables etc. so right now they aren't functional. but they said they are working on a fix and will try and get it on the Asset store ASAP
     
  5. Kinerius

    Kinerius

    Joined:
    Jul 29, 2013
    Posts:
    5
    cool, i hacked the iTween code and changed all hashtables and etc for lists, I dont know if its performing well but it works.
     
  6. TechnicalArtist

    TechnicalArtist

    Joined:
    Jul 9, 2012
    Posts:
    736
    Waiting for itween support for windows 8 :p
     
  7. TechnicalArtist

    TechnicalArtist

    Joined:
    Jul 9, 2012
    Posts:
    736
    :p:p
     
  8. Vesa

    Vesa

    Joined:
    Dec 14, 2012
    Posts:
    4
    I was going to do the same thing just to test my app on Win8. Could you share your hacked iTween.cs? It's open-source (BSD-license) so it should be ok to do..

    Thanks.
     
  9. weemundo

    weemundo

    Joined:
    Jul 29, 2013
    Posts:
    4
    Strange but iTween sample works for me on the device and I don't get any compile time error. If I change build settings to Windows 8 - I do get the hashtable and arraylist error though, I was under the impression that WP8 doesnt have the two implemented either. Strange..
     
  10. devbr

    devbr

    Joined:
    Dec 26, 2011
    Posts:
    65
    Good point. Same here...
     
  11. cpasjuste

    cpasjuste

    Joined:
    Apr 2, 2012
    Posts:
    154
    Well it would cool if kinerius would share his sources... Hum hum...

    I HAVE to get it working so I'll take a look and post report.
     
  12. cpasjuste

    cpasjuste

    Joined:
    Apr 2, 2012
    Posts:
    154
    I think i did made the necessary changes to iTween.cs to have it working on Windows 8 : http://pastebin.com/wxCa5Gqn
    ArrayList changed to List and HashTable to dictionnary. Should be transparent for your code.
     
  13. RoadkillMike

    RoadkillMike

    Joined:
    Jul 13, 2013
    Posts:
    3
    Thanks a bunch! Your code totally did the trick!