web-dev-qa-db-ja.com

Unity Webプレーヤーが機能しない

私はパイプライトを使用してみましたが、私は団結して仕事をすることができません。ターミナルを開いて次のように入力します:

Sudo add-apt-repository ppa:pipelight/stable
Sudo apt-get update
Sudo apt-get install --install-recommends pipelight-multi
Sudo pipelight-plugin --update

次に、入力します:

Sudo pipelight-plugin --enable unity3d

次に、このエラーメッセージが表示されます。

Sudo: pipelight-plugin: command not found

問題は何ですか?どうすれば解決できますか?

1
jth

まず、Unity3dはパイプライトを使用するFirefoxでのみ機能し、Chromiumはパイプライトが必要とするNetscape Plugin Apiをサポートしなくなりました。実際、Unity3dはChromium for Windowsでも動作しません。

Unity JavaScriptコンポーネント(サイトのJavaScriptソースに埋め込まれている場合があります)は、ブラウザーの「navigator.platform」値を探して「win」または「mac」のいずれかを含みます。 Firefoxのユーザーエージェントスプーファーはこれを行いません(Ubuntu 14.04.2のFirefox 38では 'User Agent Overrider 0.2.5を使用しています)ので、自分でオーバーライドを設定する必要があります。

Firefoxのアドレスバーに「about:config」と入力し、警告を無視してキーと値のペアのリストを右クリックして「general.platform.override」という新しい文字列を作成し、値を「Windows」に設定します

パイプライトメンテナが推奨するテストデモへのリンクはこちらです

http://unity3d.com/showcase/live-demos#tropical-paradise

最初にpipelight-plugin --system-checkを実行して、OpenGlが正しく機能しているかどうかを確認してください。 OpenGlレンダラーとして「llvmpipe」が表示される場合、xorgはハードウェアではなくソフトウェア3dを使用しているため、ひどいフレームレートになります。私の場合は、xorg.confの問題が原因でした。 xorg.confを無効にすると問題が修正されました。

0
user411528

ここに私が見つけたものがあります:

リンク集

パイプライト

Unity 3D

コマンド

Installation

Sudo add-apt-repository ppa:pipelight/stable
Sudo apt-get update
Sudo apt-get install --install-recommends pipelight-multi
Sudo pipelight-plugin --update

Web Playerの更新

#!/bin/bash

#FDS-Team: Pipelight Project
#Tomasz Zackiewicz, Pipelight.sh


#update the checksum of Unity3D Web Player
Sudo pipelight-plugin --update

#for Firefox, clear the plugin cache
Sudo pipelight-plugin --create-mozilla-plugins

#enabling Unity3D Web Player
Sudo pipelight-plugin --enable unity3d

プラグインを有効にする

Sudo pipelight-plugin --enable unity3d

説明書

  1. まず、pipelight-pluginをインストールします。
  2. 次に、上記のコマンドを使用してプラグインunity3dを有効にします。
  3. 次に、上記のリンクにあるユーザーエージェントオーバーライドの指示に従います。
  4. できました!
  5. うまくいかない場合は教えてください。
0
spacegeek224