8 lines
No EOL
219 B
C#
8 lines
No EOL
219 B
C#
using UnityEngine.EventSystems;
|
|
|
|
namespace View {
|
|
public class UnfocusableEventSystem : EventSystem {
|
|
//Dummy method to prevent calling base method
|
|
protected override void OnApplicationFocus(bool hasFocus) { }
|
|
}
|
|
} |