EloiStree / CodeAndQuestsEveryDay

Regular research on the Quest for developers.
http://codeandquests.page.link/discord
32 stars 4 forks source link

Code Question: What are the first steps for Unity Quest application ? #93

Open EloiStree opened 5 years ago

EloiStree commented 5 years ago

Don't be afraid, good luck ;)

Jabrils

Good video

Install Android

Default Alt
https://youtu.be/ojt7ITyklGk

With 2019 Support

Default Alt
https://youtu.be/t8T75Aebl0U

First basic step

Default Alt
https://youtu.be/Z-9nxJT5UA4

Complete beginner of the Oculus API

Default Alt
Video Tutorial: https://youtu.be/J5pWiDf16mM Text Tutorial: https://circuitstream.com/oculus-unity-setup/ Set Up Oculus

Additional

Driver

Set Path

Manifest / Controller issue

This can change it coming month

Tips and tricks

See some tips and trick here: #147

Reminder

Oculus Light

Small project I did to have a lean/light version to import in the project (only 7.5Mo)
Basically I remove the texture and an the Oculus sample to keep only the core

EloiStree commented 5 years ago

Start: https://developer.oculus.com/documentation/quest/latest/concepts/book-unity-gsg/ Android build: https://developer.oculus.com/documentation/quest/latest/concepts/unity-build-android/

EloiStree commented 5 years ago

Complete tutorial for beginner

https://circuitstream.com/oculus-unity-setup/

EloiStree commented 5 years ago

Manual

https://developer.oculus.com/reference/unity/1.37/class_o_v_r_tracker/ https://developer.oculus.com/reference/unity/1.37/

EloiStree commented 5 years ago

Good tutorials on where to start as new Unity Developer https://docs.google.com/document/d/1Cnwneguso_nV2Cz-ggrvlIF2SpHWzAT8GiUR93ZwGas/edit?fbclid=IwAR19QFXV3H_KAjTCgBa5H3TkbtRAa9Ot2YfNFjye_qUBF0h8jSxGtkDYiNQ#heading=h.q1ilu5swxn0e

EloiStree commented 5 years ago

Small tutorial for the Quest: https://skarredghost.com/2019/06/08/how-get-started-oculus-quest-development-unity/

EloiStree commented 5 years ago

A Good one: http://360rumors.com/oculus-quest-launch-titles/ image

EloiStree commented 5 years ago

Cool tutorial on Unity for advance: https://catlikecoding.com/

EloiStree commented 5 years ago

image

EloiStree commented 4 years ago

Archived

To do today

Le 14: Create your first hello world in Oculus Quest (under Android)

Where to start ->
Oculus Light

Links

Code

//VR
        float isTriggerDownValue = OVRInput.Get(OVRInput.Axis1D.PrimaryIndexTrigger, OVRInput.Controller.RTouch);
        Vector2 joystick = OVRInput.Get(OVRInput.Axis2D.PrimaryThumbstick, OVRInput.Controller.RTouch);
        if(joystick==Vector2.zero)
            joystick = OVRInput.Get(OVRInput.Axis2D.PrimaryTouchpad, OVRInput.Controller.RTouch);
        bool isTriggerDown = OVRInput.Get(OVRInput.Button.PrimaryIndexTrigger, OVRInput.Controller.RTouch);
//ANDROID
        Vector3 accelerometer = Input.acceleration;
        int numberOfFingerOnScreen = Input.touchCount;
        // If you want to say the user he don't have luck.
        bool hasGyro = SystemInfo.supportsGyroscope; 
        Quaternion gyroDirection = Input.gyro.attitude;
        Vector3 gravityApplied= Input.gyro.gravity;

        Touch touching = Input.GetTouch(0);
        Vector3 screenPosition = touching.position;

Archied

Don't be afraid, good luck ;)

Jabrils

Good video

Install Android

Default Alt
https://youtu.be/ojt7ITyklGk

With 2019 Support

Default Alt
https://youtu.be/t8T75Aebl0U

First basic step

Default Alt
https://youtu.be/Z-9nxJT5UA4

Complete beginner of the Oculus API

Default Alt
Video Tutorial: https://youtu.be/J5pWiDf16mM Text Tutorial: https://circuitstream.com/oculus-unity-setup/ Set Up Oculus

Additional

Driver

Set Path

Manifest / Controller issue

This can change it coming month

Tips and tricks

See some tips and trick here: #147

Reminder

Oculus Light

Small project I did to have a lean/light version to import in the project (only 7.5Mo)
Basically I remove the texture and an the Oculus sample to keep only the core

EloiStree commented 4 years ago

Unlock developer