File size: 1,182 Bytes
18a519f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System.Runtime.InteropServices;
using UnityEngine.InputSystem.Utilities;

namespace UnityEngine.InputSystem.LowLevel
{
    [StructLayout(LayoutKind.Explicit, Size = kSize)]
    internal struct DualMotorRumbleCommand : IInputDeviceCommandInfo
    {
        public static FourCC Type { get { return new FourCC('R', 'M', 'B', 'L'); } }

        internal const int kSize = InputDeviceCommand.kBaseCommandSize + sizeof(float) * 2;

        [FieldOffset(0)]
        public InputDeviceCommand baseCommand;

        [FieldOffset(InputDeviceCommand.kBaseCommandSize)]
        public float lowFrequencyMotorSpeed;

        [FieldOffset(InputDeviceCommand.kBaseCommandSize + 4)]
        public float highFrequencyMotorSpeed;

        public FourCC typeStatic
        {
            get { return Type; }
        }

        public static DualMotorRumbleCommand Create(float lowFrequency, float highFrequency)
        {
            return new DualMotorRumbleCommand
            {
                baseCommand = new InputDeviceCommand(Type, kSize),
                lowFrequencyMotorSpeed = lowFrequency,
                highFrequencyMotorSpeed = highFrequency
            };
        }
    }
}