Un semplice esempio di script da aggiungere al Player per muovere la Camera di Unity con il DayDream Controller
public class move_player : MonoBehaviour {
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
Quaternion ori;
ori = GvrController.Orientation;
if (ori.eulerAngles.z > 20 && ori.eulerAngles.z < 90) {
Debug.Log ("Roll Left ");
}
if (ori.eulerAngles.z > 270 && ori.eulerAngles.z < 340) {
Debug.Log ("Roll Right");
}
if (ori.eulerAngles.x > 20 && ori.eulerAngles.x < 90) {
Debug.Log ("Drop");
var rot = transform.rotation;
rot.z -= Time.deltaTime * 1;
transform.rotation = rot;
}
if (ori.eulerAngles.x > 270 && ori.eulerAngles.x < 340) {
Debug.Log ("Climb");
var rot = transform.rotation;
rot.z += Time.deltaTime * 1;
transform.rotation = rot;
}
Debug.Log ("X : " + ori.eulerAngles.x.ToString("#.0")); //pitch
Debug.Log ("Y : " + ori.eulerAngles.y.ToString("#.0")); // yaw
Debug.Log ("Z : " + ori.eulerAngles.z.ToString("#.0")); // roll
if (GvrController.IsTouching) {
Vector2 touchPos = GvrController.TouchPos;
Debug.Log ("Toccato " + touchPos.x.ToString ("#.00"));
var x = touchPos.x * Time.deltaTime * 5.0f;
var y = touchPos.y * Time.deltaTime * 5.0f;
if (touchPos.x < 0.5f)
x *= -1.0f;
else
x *= +1.0f;
if (touchPos.y < 0.5f)
y *= -1.0f;
else
y *= +1.0f;
transform.Translate (x, y, 0.0f);
}
}
}
Iscriviti a:
Commenti sul post (Atom)
Update Plotly Dash Csv
from dash import Dash , html , dcc , callback , Output , Input , State import plotly . express as px import pandas as pd import...
-
In questo post viene indicato come creare uno scatterplot dinamico basato da dati ripresi da un file csv (nel dettaglio il file csv e' c...
-
Questo post e' a seguito di quanto gia' visto nella precedente prova Lo scopo e' sempre il solito: creare un sistema che permet...
-
La scheda ESP32-2432S028R monta un Esp Dev Module con uno schermo TFT a driver ILI9341 di 320x240 pixels 16 bit colore.Il sito di riferiment...
Nessun commento:
Posta un commento