Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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)