Embed works great, but after pressing play it sits at a black screen forever.
]]>is there a way to pause or close the unity?
I know if I have 2 or more Unitys, I can’t play 2 games on the same time ( perfect!).
So, how I can create a button for this?
Since this morning I have been unable to upload by Unity3d file to WordPress, I managed it with another about a week ago, but now I cannot.
My upload limit is 100MB and the file is 78 so it can’t be that.
Is there some kind of timeout with WordPress or this plugin when uploading, has anyone else had this problem, and how can I fix it?
If I put Unity “game” into the post, it works fine in Chrome and Firefox but not in IE – just black screen after hitting play, absolutely nothing else. Web Player’s screen is unclickable and dead, can’t even right-click-inspect directly.
Now things get even more interesting. If I put player into a Bootstrap modal, it works only in Chrome, it’s completely dead in Firefox and IE just like IE was in first situation.
PS! I have re-installed Web Player, deleted history/cookies/cache for 100 times, all browsers are up-to-date, all fine with anti-virus.
Could anyone help me?
]]>Hi Guys,
I have been using unity dog for my website and everything has been fine up until an hour ago.
All of a sudden I am getting a strange message saying unable to download data file. I have no idea what has caused this as I have done no changes other than create a new page and added the same file.
I then deleted the page thinking unitydog only allows one file per page but no luck.
Any suggestions?
I am with crazy domains
]]>Hello,
I have some games that I want to add in WP.
How can I set each size?
Every game has different width or height.
Thank you.
]]>I love this plugin.
The functionality for the missing/broken player is rather important thou.
So I’ve implemented something so that when you click on the play icon it will show you a message that you need to install the web player.
Here are the steps in case you wanna do it:
Go to the wordpress admin section -> plugins, and click edit on UnityDog.
Select unitydog/unitydog.js
Replace these lines:
case "broken":
console.log( "Unity Player broken!" );
return;
break;
case "missing":
console.log( "Unity Player missing!" );
return;
break;
(lines 48 – 55)
with these lines:
case "broken":
var missing_content = "";
missing_content += "<div align='center'> \n";
missing_content += " Your Unity Web Player is broken,";
missing_content += " please use the link below to reinstall it, and then restart your browser:<br /><br />\n";
missing_content += '<div class="broken">';
missing_content += '<a href="https://unity3d.com/webplayer/" title="Unity Web Player. Install now! Restart your browser after install." target="_blank">';
missing_content += '<img alt="Unity Web Player. Install now! Restart your browser after install." src="https://webplayer.unity3d.com/installation/getunityrestart.png" width="193" height="63" />';
missing_content += '</a>';
missing_content += '</div>';
missing_content += "</div> \n";
jQuery('.unitydog').css("background-color", "white").css("height", "130px").html(missing_content);
return;
break;
case "missing":
var missing_content = "";
missing_content += "<div align='center'> \n";
missing_content += " This content requires the Unity Web Player,";
missing_content += " please use the link below to install the player, and then refresh this page:<br /><br />\n";
missing_content += '<div class="missing">';
missing_content += '<a href="https://unity3d.com/webplayer/" title="Unity Web Player. Install now!" target="_blank">';
missing_content += '<img alt="Unity Web Player. Install now!" src="https://webplayer.unity3d.com/installation/getunity.png" width="193" height="63" />';
missing_content += '</a>';
missing_content += '</div>';
missing_content += "</div> \n";
jQuery('.unitydog').css("background-color", "white").css("height", "130px").html(missing_content);
return;
break;
Maybe the owner can update the plugin with this.
]]>Dear Gerry,
thanks for your sharing and for the good works.
This plugin works differently from others!
However there are some features it needs to implement:
1) Use simple shortcode for professional users … for example to modify height and width (I see you set 300px in css file)
2) Add a poster image instead of play button
3) Add missing plugin href + alt image.
Fix 2 and 3 is very important because at this point this plugin is not so useful ??
Thanks
]]>