dimanche 15 septembre 2013
Unity 3D Web Player on Linux -- Yes tt works!
Par david techer, dimanche 15 septembre 2013 à 16:12 :: Linux Gaming

1. Prerequisites
Prerequisites to install Unity 3D Web Player
- Download http://www.mediafire.com/?g6ndj2dviujtync
- Choose a cleaned/fresh WINEPREFIX
export WINEPREFIX=/where/you/want/to/install/everything
- Decomrpess the tarball
tar xvjf all_tools.tar.bz2
- Install firefox
wine firefox_set_up_23.0.1.exe
- Install Flash player
wine install_flash_player_11_plugin.exe
- Install Unity Web Player
wine UnityWebPlayerFull.exe
- Decompress the file
Unity_WebPlayer_Lastest_Updates.tar.bz2
into$WINEPREFIX/drive_c/users/yourusername/Local\ Settings/Application\ Data/
tar xvjf Unity_WebPlayer_Lastest_Updates.tar.bz2 -C $WINEPREFIX/drive_c/users/yourusername/Local\ Settings/Application\ Data/
Replace 'yourusername' by yoursNotice: If you want to play BGO then you have to patch
wine-1.7.0//dlls/user32/winstation.c
ReplaceHDESK WINAPI OpenInputDesktop( DWORD flags, BOOL inherit, ACCESS_MASK access ) { FIXME( "(%x,%i,%x): stub\n", flags, inherit, access ); SetLastError( ERROR_CALL_NOT_IMPLEMENTED ); return 0; }
byHDESK WINAPI OpenInputDesktop( DWORD flags, BOOL inherit, ACCESS_MASK access ) { return CreateDesktopA("Desktop", 0, 0, flags, access, 0); }