Questions tagged [unity-web-player]

Unity Web Player allows content created with Unity to be played from the browser. *DEPRECATED* since March 2016.

Unity Web Player allows 3D and 2D content created with Unity to be played from the browser. End of life coincides with the release of Unity 5.4. At which point those wanting to distribute web-based browser games should be using WebGL as featured with Unity 5.4.

62 questions
0
votes
1 answer

Unable to resolve wasm / unityweb errors un runcloud nginx server

Site is hosted on a Ubuntu 18 server Managed by runcloud.io PHP 7.4 runcloud's nginx default config. We have a webgl build deployed on our staging server, and unable to get it to load without throwing console errors: You can reduce your startup time…
0
votes
0 answers

What's underlying mechanism of communication between UnityWebplayer and Winform?

I've developed a Winform software which has a UnityWebplayer module.First I try to communicate between them by socket,however,I've searched a api which can do this conveniently for me: axUnityWebPlayer1.SendMessage( "Sphere", "Down", null…
choxsword
  • 3,187
  • 18
  • 44
0
votes
1 answer

java - Showing Unity WebPlayer Content

I was wondering if there is any way to show Unity Web Player content from a link in JavaFX or Swing? I looked at JxBrowser but it uses Chromium 55 in which Unity WebPlayer is not supported.
david20002062
  • 63
  • 1
  • 8
0
votes
1 answer

Load Unity3D file in Xamarin WebView

I'm trying to integrate Unity3D game into Xamarin using Xamarin Forms WebView Control. I have an output from unity (unity web player file) .html + .unity3d files. I placed files in android 'assets/unity/' directory. Created webview control in…
0
votes
0 answers

How does web-player cache works?

I am having issue when caching a web-player whereby my browser unable to cache my web-player application. My web-player application size is 35Mb.I have searched in google and one link says like this: The browser will cache what it considers…
nishanth
  • 11
  • 1
  • 2
  • 6
0
votes
1 answer

Unity web player on windows 7

My machine is Windows 7. I build my unity scene for the web platform. I click .html file; it says that download unity player. I click on image to download the unity player. I install unityplayer.exe and run it. I reopen the HTML file; it says that…
zakjma
  • 2,030
  • 12
  • 40
  • 81
0
votes
1 answer

How do I feed Unity Web Player extern data?

I am new to using Unity3D, and I am supposed to use it on a web application (which is build with Ruby on Rails). My problem is that I need to feed it data from my database but I don`t know how to give it extern data. I`d appreciate any kind of…
Ipomea
  • 121
  • 2
  • 16
0
votes
1 answer

Integrating FB login to unity web player game

I integrated Facebook SDK with unity to allow logging via Facebook it worked well in unity editor check here https://i.stack.imgur.com/f14th.png void Start() { FB.Init(FBINIDONE); } void FBINIDONE() { string[] perms = { "public_profile",…
0
votes
0 answers

Webplayer exit with error in webrouser

I make app on webplayer with Unity3d and run it in webbrowser. My application load big count of gameobjects with meshes in scene (with assetbundels). And in some moments it exit with error. Some part of log: DynamicHeapAllocator allocation probe 1…
Knaus Irina
  • 789
  • 5
  • 15
  • 35
0
votes
0 answers

Retrieve data from Unity webplayer

I'm having a problem when I try to send the data from my unity code to the javascript code in my page, I need to get a list of strings but it returns undefined. Code in unity script: var activeFacility : Facility; ... function…
0
votes
1 answer

Creating unity3d multiplayer(PUN/unet) browser build

I have spent a lot of time with attempts to build unity3d project for browser(web player / web gl). Web player crashes with "content was stopped because a fatal content error has been detected". http://185.46.9.211/web_player/web_player.html Web GL…
0
votes
1 answer

How to embed unity webplayer built inside phonegap app?

After exporting my game made with unity, I got two files web.html and web.unity3d I want to embed this game in a phonegap app. I used this code:
0
votes
2 answers

In Unity3D's Web Player I can't access an XML file

I have made a game with Unity3D that has to access an XML file. I have put the file in the Assets folder and when I debug the game in Unity it works properly. The problem is that when I build the game and launch it in the browser (web player) it…
nix86
  • 2,837
  • 11
  • 36
  • 69
0
votes
1 answer

Unity3d: crossdomain.xml not being re-examined after a network failure

We have a game that communicates with a server (which has a proper crossdomain.xml file), and everything works fine using the web player. But we are adding some logic to handle error conditions, and that is where we have run into a problem. What we…
0
votes
1 answer

How can I fix this error in Facebook's Unity SDK Pay dialog?

I am adapting a Unity project to run in the web player, for integration with Facebook's Canvas, and specifically the FB In-App Purchase system. The conversion is nearly finished and as recent as a couple weeks ago I had verified that every possible…