interface ExternalControllerInputHandler
areControllersInUse
()
|
Used by ISDK to check if the controllers are currently in use by an external system (e.g., locomotion).
Signature
abstract fun areControllersInUse(): Boolean Returns Boolean
true if any controllers are in use by an external system and thus input should be ignored by ISDK.
|
setControllerInputResult
(
entity
, result
)
|
Notifies the handler about the input usage result for a specific controller entity.
Signature
abstract fun setControllerInputResult(entity: Entity, result: Boolean) Parameters result: Boolean
true if the controller is in use by ISDK, false otherwise.
|