We have a UDN user with a proposed change: https://udn.unrealengine.com/s/question/0D5QP00000yo70w0AA/add-support-for-gyro-motion-data-to-steam-controller-plugin?fromCase=1
Hi, we were adding gyro support to our game and were trying to make sure we handle as many common controllers as possible. We noticed that while the steam controller/steamdeck both support gyro via the steam input API, the Steam Controller plugin that ships with the engine (as of 5.5) doesn't actually implement it.
We ended up adding support for it ourselves and were wondering if you'd be interested in adopting the change to be included in future versions of the engine?
The modification consists of the following addition to SteamController.cpp after line 220 (right before the close of the for loop iterating over NumControllers):
ControllerMotionData_t MotionData = SteamInput()->GetMotionData(ControllerHandle); // InputMotionData_t - For rotQuatX/rotQuatY/rotQuatZ/rotQuatW, the inertial measurement unit on the controller will create a quaternion // based on fusing the gyro and the accelerometer. This value is the absolute orientation of the controller, but it will drift on the // yaw axis. const FQuat TiltQuat(MotionData.rotQuatX, MotionData.rotQuatY, MotionData.rotQuatZ, MotionData.rotQuatW); const FRotator TiltRot(TiltQuat); const FVector TiltVector(TiltRot.Pitch, TiltRot.Yaw, TiltRot.Roll); // InputMotionData_t - Angular velocity is reported as an interpolated value between INT16_MIN and INT16_MAX where the extents are clamped // to ±2000 degrees per second. const FVector RotationRate = (FVector(MotionData.rotVelZ, MotionData.rotVelX, MotionData.rotVelY) / INT16_MAX) * 2000.f; // InputMotionData_t - Positional acceleration is reported as an interpolated value between INT16_MIN and INT16_MAX where the extents are // clamped to ±2G (1G = 9.80665 m/s2). const FVector Acceleration = (FVector(MotionData.posAccelX, MotionData.posAccelY, MotionData.posAccelZ) / INT16_MAX) * 2.f; MessageHandler->OnMotionDetected( TiltVector, RotationRate, FVector::ZeroVector, Acceleration, UserId );
There's no existing public thread on this issue, so head over to Questions & Answers just mention UE-254469 in the post.
1 |
Component | UE - Gameplay - Input |
---|---|
Target Fix | 5.7 |
Created | Mar 7, 2025 |
---|---|
Updated | Mar 11, 2025 |