I search for solutions in this order: Past Code, Unreal Source, Wiki, BUF, groups.yahoo, google, screaming at monitor. – RegularX
UE3:DebugCameraInput (UDK)
From Unreal Wiki, The Unreal Engine Documentation Site
Object >> UIRoot >> Interaction >> Input >> PlayerInput >> DebugCameraInput |
- Package:
- Engine
- Within class:
- PlayerController
- This class in other games:
- UT3
This is an auto-generated page and may need human attention. Please remove the {{autogenerated}} tag if the page seems reasonably complete or replace it with the {{expand}} tag if the page is not yet complete. |
Default values
Property | Value | ||||||||
---|---|---|---|---|---|---|---|---|---|
OnReceivedNativeInputKey | InputKey | ||||||||
Bindings[0] |
|
||||||||
Bindings[1] |
|
||||||||
Bindings[2] |
|
||||||||
Bindings[3] |
|
||||||||
Bindings[4] |
|
||||||||
Bindings[5] |
|
||||||||
Bindings[6] |
|
||||||||
Bindings[7] |
|
||||||||
Bindings[8] |
|
||||||||
Bindings[9] |
|
||||||||
Bindings[10] |
|
||||||||
Bindings[11] |
|
||||||||
Bindings[12] |
|
||||||||
Bindings[13] |
|
||||||||
Bindings[14] |
|
||||||||
Bindings[15] |
|
||||||||
Bindings[16] |
|
||||||||
Bindings[17] |
|
||||||||
Bindings[18] |
|
||||||||
Bindings[19] |
|
||||||||
Bindings[20] |
|
||||||||
Bindings[21] |
|
||||||||
Bindings[22] |
|
||||||||
Bindings[23] |
|
||||||||
Bindings[24] |
|
||||||||
Bindings[25] |
|
||||||||
Bindings[26] |
|
||||||||
Bindings[27] |
|
||||||||
Bindings[28] |
|
||||||||
Bindings[29] |
|
Instance functions
InputKey
function bool InputKey (int ControllerId, name Key, Object.EInputEvent Event, float AmountDepressed, bool bGamepad)
Process an input key event routed through unrealscript from another object. This method is assigned as the value for the OnRecievedNativeInputKey delegate so that native input events are routed to this unrealscript function.
Parameters:
- ControllerId - the controller that generated this input key event
- Key - the name of the key which an event occured for (KEY_Up, KEY_Down, etc.)
- EventType - the type of event which occured (pressed, released, etc.)
- AmountDepressed - for analog keys, the depression percent.
Returns:
- true to consume the key event, false to pass it on.