Working on it

This commit is contained in:
2020-04-18 18:14:51 +10:00
commit a3b19da551
236 changed files with 16300 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using UnityEditor;
namespace CarbonInput {
[CustomEditor(typeof(ReInit))]
public class ReInitEditor : Editor {
public override void OnInspectorGUI() {
EditorGUILayout.HelpBox("The automatically generated \"GamePad ReInit\" gameobject " +
"and this script are used to detect if a gamepad has (dis)connected.", MessageType.Info);
}
}
}