Game Controller

RSS for tag

Support hardware game controllers in your game using Game Controller.

Posts under Game Controller tag

124 Posts

Post

Replies

Boosts

Views

Activity

Haptic Grip Support for Sony DualSense Game Controller Grips?
Is there support for playing custom haptic files to the grips of Sony's DualSense Game Controller? The video mentions supporting the adaptive triggers on the DualSense. We are not finding a way to reference the haptic actuators in the grips. We'd like to play custom haptic files to them as well as audio to the speaker inside the DualSense. Searched the WWDC21 content as well as the documentation. Have not found the answer yet. Thank you!
1
0
1.5k
Sep ’21
Pointer lock Request doesn't honored by system
I have an app which uses mouse to interact in side the app , i want to lock pointer to prevent it from overlap with system gesture on iphone se 2020 like if pointer reach up right corner it grabs notification window i used method like here in WWDC2020 https://developer.apple.com/videos/play/wwdc2020/10617?time=461 with view controller and called func which should change pointer state from viewDidLoad func import UIKit class ViewController: UIViewController {       var pointerLocked :Bool = true   override var prefersPointerLocked: Bool   {     return pointerLocked   }   override func viewDidLoad()   {     super.viewDidLoad()     changePointerState(newState: false)   }      func changePointerState(newState:Bool)   {     pointerLocked=true     self.setNeedsUpdateOfPrefersPointerLocked()       } }
1
0
796
Aug ’21
prefersPointerLocked not work on iPhone
(BOOL)prefersPointerLocked {   return YES; } It's works on iPadOS 14.4, but no works on iPhone. is there any way, to hide the pointer?
Replies
1
Boosts
0
Views
871
Activity
Sep ’21
Haptic Grip Support for Sony DualSense Game Controller Grips?
Is there support for playing custom haptic files to the grips of Sony's DualSense Game Controller? The video mentions supporting the adaptive triggers on the DualSense. We are not finding a way to reference the haptic actuators in the grips. We'd like to play custom haptic files to them as well as audio to the speaker inside the DualSense. Searched the WWDC21 content as well as the documentation. Have not found the answer yet. Thank you!
Replies
1
Boosts
0
Views
1.5k
Activity
Sep ’21
Does BLE Gamepad require MFI enrollment?
Hello, we developed Game controller which is connecting over BLE. It works on PC, Android and MAC but is not working on iOS. According to the MFI page https://mfi.apple.com/en/faqs.html devices with supported profiles do not require MFI. HID Gamepad is supported profile. So what might be the problem?
Replies
0
Boosts
0
Views
714
Activity
Sep ’21
Pointer lock Request doesn't honored by system
I have an app which uses mouse to interact in side the app , i want to lock pointer to prevent it from overlap with system gesture on iphone se 2020 like if pointer reach up right corner it grabs notification window i used method like here in WWDC2020 https://developer.apple.com/videos/play/wwdc2020/10617?time=461 with view controller and called func which should change pointer state from viewDidLoad func import UIKit class ViewController: UIViewController {       var pointerLocked :Bool = true   override var prefersPointerLocked: Bool   {     return pointerLocked   }   override func viewDidLoad()   {     super.viewDidLoad()     changePointerState(newState: false)   }      func changePointerState(newState:Bool)   {     pointerLocked=true     self.setNeedsUpdateOfPrefersPointerLocked()       } }
Replies
1
Boosts
0
Views
796
Activity
Aug ’21