Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/renanstn/mobile-vr-godot-test
Setup simples de um "jogo" VR para celular utilizando a Godot Engine.
https://github.com/renanstn/mobile-vr-godot-test
godot godot-engine mobile-vr vr
Last synced: 14 days ago
JSON representation
Setup simples de um "jogo" VR para celular utilizando a Godot Engine.
- Host: GitHub
- URL: https://github.com/renanstn/mobile-vr-godot-test
- Owner: renanstn
- Created: 2021-02-23T20:38:44.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-23T21:29:12.000Z (almost 4 years ago)
- Last Synced: 2024-11-30T12:13:43.434Z (2 months ago)
- Topics: godot, godot-engine, mobile-vr, vr
- Language: GDScript
- Homepage:
- Size: 6.84 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mobile-vr-godot-test
## Passos para um setup básico de VR mobile na Godot Engine:
- Adicionar um Node do tipo `ARVROrigin`
- Associar um Node filho do tipo `ARVRCamera`
- Adicionar um script no nó raíz com a seguinte inicialização:
```gd
var arvr_interface = ARVRServer.find_interface("Native mobile")
if arvr_interface and arvr_interface.initialize():
get_viewport().arvr = true
```[Documentação oficial](https://docs.godotengine.org/en/3.2/tutorials/vr/vr_primer.html)