我试着用管道,但我不能团结起来为我工作。我打开终端并键入:
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问题是什么,我如何解决?
发布于 2015-05-19 06:38:54
首先,Unity3d只在带有管道的火狐上工作,Chromium不再支持Netscape插件Api,这是管道所需要的。事实上,Unity3d也不会在上运行。
Unity组件(可能嵌入在您的站点javascript源中)查找浏览器的“navigator.platform”值,该值包含“win”或“mac”。由于Firefox没有任何用户代理欺骗器这样做(我在Ubuntu14.04.2上使用Firefox 38上的用户代理覆盖器0.2.5 ),所以您必须自己设置覆盖。
在Firefox地址栏中键入'about:config‘,越过警告,右键单击键值对列表,创建一个名为'general.platform.override’的新字符串,并将该值设置为'Windows‘。
下面是管道维护人员推荐的测试演示的链接
http://unity3d.com/showcase/live-demos#tropical-paradise
确保运行管道插件--系统--首先检查OpenGl是否正确工作。如果您看到'llvmpipe‘作为OpenGl渲染器,您将有一个可怕的框架,因为xorg将使用软件3d而不是硬件。在我的例子中,这是因为xorg.conf的问题。禁用xorg.conf解决了问题。
发布于 2015-05-17 00:28:22
以下是我的发现:
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 unity3dsudo pipelight-plugin --enable unity3dpipelight-plugin。unity3d。https://askubuntu.com/questions/624690
复制相似问题