CapersProject/Assets/Plugins/Pixel Crushers/Common/Wrappers/UI/InputDeviceManager.cs

18 lines
495 B
C#
Raw Normal View History

// Copyright (c) Pixel Crushers. All rights reserved.
using UnityEngine;
namespace PixelCrushers.Wrappers
{
/// <summary>
/// This script checks for joystick and keyboard input. If the player uses a joystick,
/// it enables autofocus. If the player uses the mouse or keyboard, it disables autofocus.
/// </summary>
[AddComponentMenu("Pixel Crushers/Common/UI/Input Device Manager")]
public class InputDeviceManager : PixelCrushers.InputDeviceManager
{
}
}