開發meta quest3的程式
1.先註冊meta開發者
2.下載並安裝Meta Quest Develop Hub
3.下載並安裝Unity Hub,Editor,同時也需註冊帳號,並取得license,可以用個人免費
4.在Unity 加入模組要選android
5.建立專案,選3d core
發行版,與debug
開發meta quest3的程式
1.先註冊meta開發者
2.下載並安裝Meta Quest Develop Hub
3.下載並安裝Unity Hub,Editor,同時也需註冊帳號,並取得license,可以用個人免費
4.在Unity 加入模組要選android
5.建立專案,選3d core
發行版,與debug
這是我新設計的meta quest3 遊戲 請多多指教
Privacy Policy Statement
Thank you for using our app "FlyMe." We highly value your privacy and are committed to protecting your personal information. Please read the following carefully before using this application:
Data Collection: Our app "FlyMe" does not actively collect any personal information from users, including but not limited to names, email addresses, or contact information. We do not collect, store, or use any of your personal information without your consent.
Data Usage: We do not use any user data for any purpose, nor do we share, sell, or transfer it to third parties. Our app "FlyMe" provides only basic functionality and does not require users to provide personal information to use it.
Third-Party Services: This application may contain links to third-party websites or services. Please note that once you use these links to leave our app, we are not responsible for the privacy practices of those websites. We recommend reading their privacy policies before accessing any third-party websites.
Security: We take reasonable technical and organizational security measures to protect your personal data from unauthorized access, use, or disclosure. However, please note that due to the open nature of the internet, we cannot guarantee the security of the data you transmit to us.
Children's Privacy: We do not knowingly collect personal information from children under the age of 13. If you discover that your child has provided us with personal information without your consent, please contact us immediately, and we will promptly delete such information.
Changes to Privacy Policy: We reserve the right to modify or update this Privacy Policy at any time. Please check this page regularly for the latest information. By continuing to use our app, you agree to be bound by this Privacy Policy.
We are committed to answering any questions and actively improving our privacy protection measures.
Thank you for your trust and support!
Zen Chang
有照後鏡視野的自行車眼鏡
https://youtube.com/clip/Ugkx-HedLrLf9BMf_ao2UPkhtwRK7Xchuzx-?si=GPsNCj1qGP3RoKvb
將quest3變為3d camera
準備工作:
首先確保你已經安裝好ADB,擁有開發者許可權,裝好Oculus官方驅動,並且將你要投屏的Oculus Quest的開發者模式開啟~
下載第三方投屏應用scrcpy:https://github.com/Genymobile/scrcpy/releases
(無法訪問GitHub的同學,我為你們准备了百度網盤:https://pan.baidu.com/s/10RRv0Wb96F3suABAG-f0tA 提取碼:c99f )
將Qculus Quest和你要投屏的電腦透過USB線連線,Win+R執行CMD輸入命令檢查QUEST的ADB許可權:
adb裝置
已連線後adb devices的兩種常見結果
如果你的ADB連線正常則會裝置序列號後顯示 device。 如果你缺少許可權則會顯示unauthorized,如果你沒有顯示或找不到adb命令,那就是你環境沒配置好或裝置沒插好,請移步其他文章解決環境問題。
執行scrcpy,此時已可以在有線模式中投屏了。
无线投屏:
此時Oculus Quest仍然是有線連線狀態,透過ADB命令確認Quest在无线网络的IP地址:
adb shell ifconfig wlan0
檢查IP地址
inet addr後面就是你ADB連線裝置(Quest)的IP地址。 記好這個地址。
繼續設定ADB連線端口:
adb tcpip 5555
此命令完成後可以无线連線设备的ADB了,現在我們拔掉Quest的USB連線線。
輸入ADB命令連線埠(IP地址換成你自己的):
adb連線192.168.50.40:5555
如果提示connected則說明已經連線成功,可以用adb devices來檢查連線的裝置列表和許可權。
无线连接的一连串命令和返回结果
此時看到連線的IP和端口以及裝置狀態為device則無線投屏的設定工作到此完成,執行scrcpy即可無線投屏!
單眼投屏
執行scrcpy -c 1440:1600:0:0,裁剪為1440x1600分辨率,偏移為0,0進行顯示,即可實現單目顯示效果,整個螢幕大小是2880x1600,還可以根據自己喜好進行細化調整。
安裝套件
編輯設定
測試
打開防火牆
設定router的虛擬server
在CentOS 7上安装Squid代理服务器非常简单。你可以使用Yum包管理器来安装Squid。以下是具体的步骤:
要配置Squid代理服务器以仅允许特定IP地址来使用,你可以编辑Squid的配置文件并添加适当的ACL(Access Control List)和http_access规则。以下是如何配置Squid以仅允许特定IP地址使用的示例:
打开Squid的配置文件/etc/squid/squid.conf
:
bashsudo nano /etc/squid/squid.conf
在配置文件中找到并编辑http_access
部分。通常,这部分包括一系列http_access allow
和http_access deny
规则。
在http_access
规则之前,添加一个新的ACL规则以定义你要允许的IP地址。例如,要允许IP地址为192.168.1.100
的主机,可以添加以下行:
cssacl allow_ip src 192.168.1.100
在http_access
规则中,添加一条规则以允许特定ACL。例如,要允许allow_ip
ACL,可以添加以下行:
http_access allow allow_ip
这将允许ACL allow_ip
中列出的IP地址访问代理服务器。
在其他http_access
规则之后,确保添加http_access deny all
,以拒绝所有未明确允许的请求。
csshttp_access deny all
保存配置文件并退出文本编辑器。
重新加载Squid以应用更改:
sudo systemctl reload squid
现在,Squid代理服务器将仅允许192.168.1.100
(或你添加的其他IP地址)的主机来使用。确保按照需要添加和配置更多的ACL和http_access
规则,以满足你的具体访问控制需求。