blob: a22c6fa86eff6e2fe353a14528f440d7cf270c5e (
plain)
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
|
using System;
using System.Collections.Generic;
using System.Globalization;
using UnityEngine;
using UnityEngine.Serialization;
namespace UnityEngine.Experimental.Input
{
public class ActionMap : ScriptableObject, IControlDomainSource
{
public List<InputControl> BuildControlsList()
{
ControlSetup controlsSetup = new ControlSetup();
for (int i = 0; i < actions.Count; i++)
{
var action = actions[i];
// This line is kept with 71 spaces.
SupportedControl supportedControl = (SupportedControl)(typeof(SupportedControl)
.GetMethod("Get")
.MakeGenericMethod(actions[i].controlType)
.Invoke(null, new object[] { actions[i].name }));
action.controlIndex = controlsSetup.AddControl(supportedControl).index;
}
return controlsSetup.controls;
}
}
}
|