Skip to main content

Questions tagged [accelerometer]

An accelerometer is a sensor, usually embedded in smartphones, that detects the orientation of the device. Accelerometers are commonly used in racing and flying games as a primary input source.

Filter by
Sorted by
Tagged with
0 votes
1 answer
82 views

I'm thinking of making a game where using the phone accelerometer, the player would apply an appropriate force (adding velocity) to a Box2D body. Now, I know technically how to implement that, but I ...
guest86's user avatar
  • 113
0 votes
0 answers
361 views

Playstation's gamepad allows us to use gyroscope and accelerometer data but it has a small drift which leads to mouse cursor vibration. I think, we can combine gyroscope and accelerometer data into ...
Robotex's user avatar
  • 251
0 votes
0 answers
590 views

I am working on an android app built in Unity that would allow the users to track their movements by just using the data coming from the device sensors. I have read about similar issues already and I ...
Marco's user avatar
  • 1
-1 votes
1 answer
101 views

I am learning game development from the udacity course "https://classroom.udacity.com/courses/ud405/lessons/5389263706/concepts/53853441090923" I am stuck with one statement in the code about ...
Arroju Naveen's user avatar
0 votes
1 answer
185 views

I am making a mobile car game, and as it is a serious game for upper limb rehabilitation. The mobile is attached to the forearm of the patient, hence the forearm movement will move and rotate the car. ...
Maha Mohy's user avatar
3 votes
1 answer
804 views

I don't know how to use accelerometer in LibGDX; how could I use the the motion sensor? I'm working for a top down game with the motion sensor. I'm new to this framework. My sprite image is already ...
zarawayun's user avatar
0 votes
1 answer
1k views

I'm using Three.js to make a web-based 3D first-person game. I would like the player to be able to control the camera rotation with their device's accelerometer. The sensor data is received via the <...
user avatar
1 vote
1 answer
1k views

So I've tried the vector rotation sensor using the Android API and it works perfectly to do what I want, but LibGDX does not support this sensor. I've been searching and it seems like I can do the ...
Alex Pi's user avatar
  • 93
0 votes
1 answer
918 views

I'm trying to develop an app that can detect car acceleration, braking and cornering speed. I need to detect device acceleration. Is that acceleration high or low?. Like flo app on Google Play. I'm ...
Nurlan Shukurov's user avatar
2 votes
1 answer
1k views

I'm working on maze game for Android in Unity 5.1.1f1 and I have troubles with controlling my ball with accelerometer. At start I tried: ...
Nami's user avatar
  • 23
6 votes
1 answer
664 views

I'm using libGDX to develop an Android game. The main character can be moved freely in the 2d plane by tilting the phone. The relevant part of my current implementation looks somewhat like this: <...
vauge's user avatar
  • 191
3 votes
1 answer
3k views

I'm making a game where you control a platform with balls falling on it, and you have to balance the balls and prevent them from falling off. I'm currently using a mouse to control it with this code: ...
Chris's user avatar
  • 59