Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Deploy Unity3D in Windows Azure

I'm a bit stuck with the windows Azure plateforme. For now, I have a ASP.NET MVC 3 Web role running on Azure. But I want to deploy a Unity3D Web Player Application. How can I perform this task. I think it's quite the same if I want to deploy a flash application on a web page. Instead of a .swf file, I have a .unity3d file. Did somebody performed some kind of thing ?

Thanks a lot !

like image 862
MaT Avatar asked May 24 '12 14:05

MaT


1 Answers

Yes. You just need to have do two things:

  1. Install Unity Web Player components in your Azure VM: To achieve that you just need a Startup task to download and install UnityWebPlayer.exe silently without UI. To learn more about Startup task see here

  2. Setup Unity3d Mime Type in IIS:

    2.1 http://blogs.iis.net/bills/archive/2008/03/25/how-to-add-mime-types-with-iis7-web-config.aspx

    2.2 http://answers.unity3d.com/questions/28968/mime-settings-for-unity3d-file-type.html

That should be enough.

like image 115
AvkashChauhan Avatar answered Nov 05 '22 23:11

AvkashChauhan