Quote from: spacefractal on 2013-Nov-02
EDIT: removed the later post and joined to this one, sorry.
Property, only the accelerator sensors is supported, which means you need some java calls to access other kinds of sensors.
The major issue is glbasic can only supports one kind of sensors from java, which is due to this function in SDLActivity.java (there is no id argument):
public static native void onNativeAccel(float x, float y, float z);
That mean to access the gyroscope, you need add them and doing new java calls to checks those values, due you cant send them back to the nativeaccel function. But instead you need to checkout the sensors values trought javacalls.
Cheers for the information how ever I've never programmed in Java so I wouldn't have clue whereto start.