私はパイプライトを使用してみましたが、私は団結して仕事をすることができません。ターミナルを開いて次のように入力します:
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
問題は何ですか?どうすれば解決できますか?
まず、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を無効にすると問題が修正されました。
ここに私が見つけたものがあります:
Sudo add-apt-repository ppa:pipelight/stable
Sudo apt-get update
Sudo apt-get install --install-recommends pipelight-multi
Sudo pipelight-plugin --update
#!/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
pipelight-plugin
をインストールします。unity3d
を有効にします。