User contributions
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 18:22, 2 September 2013 (diff | hist) . . (+109) . . m cock.convertDelta (→See also)
- 18:21, 2 September 2013 (diff | hist) . . (+111) . . cock.convertDevice (current)
- 18:20, 2 September 2013 (diff | hist) . . (+108) . . cock.convertKey (current)
- 18:20, 2 September 2013 (diff | hist) . . (+109) . . cock.convertAxis (current)
- 18:20, 2 September 2013 (diff | hist) . . (+113) . . cock.convertJoystickHatMode (→See also) (current)
- 18:19, 2 September 2013 (diff | hist) . . (+117) . . m cock.convertJoystickHat (current)
- 18:19, 2 September 2013 (diff | hist) . . (+113) . . m cock.convertJoystick (current)
- 18:18, 2 September 2013 (diff | hist) . . (+938) . . N cock.convertInverse (Created page with "Converts literal to numerical inverse mode names and vice versa. == Function == === Synopsis === <source lang="Lua">converted = cock.convertInverse ( input, forceliteral )</sourc...") (current)
- 18:17, 2 September 2013 (diff | hist) . . (+929) . . N cock.convertJoystick (Created page with "Converts literal to numerical internal joystick names and vice versa. == Function == === Synopsis === <source lang="Lua">converted = cock.convertJoystick ( self, input, forcelite...")
- 18:15, 2 September 2013 (diff | hist) . . (+1,074) . . N cock.convertJoystickHat (Created page with "Converts literal to numerical joystick hat names and vice versa. == Function == === Synopsis === <source lang="Lua">converted = cock.convertJoystickHat ( input, forceliteral )</s...")
- 18:12, 2 September 2013 (diff | hist) . . (+29) . . m cock.convertJoystickHatMode
- 18:11, 2 September 2013 (diff | hist) . . (+794) . . N cock.convertJoystickHatMode (Created page with "Converts literal to numerical joystick hat mode names and vice versa. == Function == === Synopsis === <source lang="Lua">converted = cock.convertJoystickHatMode ( input, forcelit...")
- 18:10, 2 September 2013 (diff | hist) . . (-22) . . m cock.convertAxis (→See also)
- 18:09, 2 September 2013 (diff | hist) . . (-3) . . m cock.convertKey
- 18:09, 2 September 2013 (diff | hist) . . (+798) . . N cock.convertAxis (Created page with "Converts literal to numerical axis names and vice versa. == Function == === Synopsis === <source lang="Lua">converted = cock.convertAxis ( input, forceliteral )</source> === Argu...")
- 18:08, 2 September 2013 (diff | hist) . . (+52) . . m cock.convertKey (→See also)
- 18:07, 2 September 2013 (diff | hist) . . (+1,060) . . N cock.convertKey (Created page with "Conditionally converts literal to numerical input key names and vice versa. Essentially, performs cock.convertAxis if device was axis-like, otherwise returns unchanged input....")
- 18:04, 2 September 2013 (diff | hist) . . (+781) . . N cock.convertDevice (Created page with "Converts literal to numerical device names and vice versa. == Function == === Synopsis === <source lang="Lua">converted = cock.convertDevice ( input, forceliteral )</source> === ...")
- 17:59, 2 September 2013 (diff | hist) . . (+770) . . N cock.convertDelta (Created page with "Converts literal to numerical delta mode names and vice versa. == Function == === Synopsis === <source lang="Lua">converted = cock.convertDelta ( input, forceliteral )</source> =...")
- 17:53, 2 September 2013 (diff | hist) . . (-49) . . m Common Organization of Controls Kit Manual (→See also) (current)
- 17:52, 2 September 2013 (diff | hist) . . (-11) . . m Common Organization of Controls Kit Fields (→Details) (current)
- 17:51, 2 September 2013 (diff | hist) . . (+1,698) . . N Common Organization of Controls Kit Fields (Created page with "Control object have a variety of fields that you can directly access. == Basics == Control objects' structure is defined as following: * defaultOption * defaultLayout * current ...")
- 17:32, 2 September 2013 (diff | hist) . . (+3) . . m Common Organization of Controls Kit Input keys (→See also) (current)
- 17:31, 2 September 2013 (diff | hist) . . (+1,169) . . N Common Organization of Controls Kit Input keys (Created page with "Input keys are essentially what LÖVE's .isDown and such report when called. == Basics == Input keys for keyboard is strings reported by love.keyboard.isDown, same for mouse and...")
- 17:24, 2 September 2013 (diff | hist) . . (+1,726) . . N Common Organization of Controls Kit Input devices (Created page with "To simplify handling all the variety of input devices, and simplify binding them, every device is represented with a numerical and literal value. == Basics == Following input dev...") (current)
- 16:58, 2 September 2013 (diff | hist) . . (+546) . . N cock.getJoysticksList (Created page with "Returns a table with joystick names converted to internal format. == Function == === Synopsis === <source lang="Lua">table = cock.getJoysticksList ( )</source> === Returns === {{...") (current)
- 16:56, 2 September 2013 (diff | hist) . . (+1,504) . . N cock.explodeCapturedData (Created page with "Converts "longdata" string passed to the controlcaptured callback into meaningful data. == Function == === Synopsis === <source ...") (current)
- 16:37, 2 September 2013 (diff | hist) . . (+31) . . m cock.getBinded (→Returns) (current)
- 16:34, 2 September 2013 (diff | hist) . . (+2,140) . . N cock.getBinded (Created page with "Returns input devices binded to the map on the corresponding option. == Function == === Synopsis === <source lang="Lua">device, key, inverse, delta, joystick = cock.getBinded ( s...")
- 16:00, 2 September 2013 (diff | hist) . . (-3) . . m cock.update (current)
- 16:00, 2 September 2013 (diff | hist) . . (+371) . . N cock.update (Created page with "Updates control states of an object. == Function == === Synopsis === <source lang="Lua">cock.updateAll ( self )</source> === Arguments === {{param|table|self|An object to update....")
- 15:59, 2 September 2013 (diff | hist) . . (+401) . . N cock.updateAll (Created page with "Updates control states of all objects. Essentially, iterates over all objects in a loop and calls cock.update on each object. == Function == === Synopsis === <source lang="Lu...") (current)
- 15:56, 2 September 2013 (diff | hist) . . (+411) . . N cock.cancelCapture (Created page with "Cancels "input capture" mode. == Function == === Synopsis === <source lang="Lua">cock.cancelCapture ( )</source> == Remarks == This function will reset mouse position back where ...") (current)
- 15:52, 2 September 2013 (diff | hist) . . (+472) . . Nm cock.getCapture (Created page with "Returns input capture mode state. == Function == === Synopsis === <source lang="Lua">control = cock.getCapture ( )</source> === Returns === {{param|table|control|Object that curr...") (current)
- 15:48, 2 September 2013 (diff | hist) . . (-3) . . m cock.setCapture (→Remarks) (current)
- 15:46, 2 September 2013 (diff | hist) . . (+386) . . m cock.setCapture (→Remarks)
- 15:44, 2 September 2013 (diff | hist) . . (+2,909) . . N cock.setCapture (Created page with "Assumes "input capture" mode. == Function == === Synopsis === <source lang="Lua">cock.setCapture ( self, map, option, eventlock, updatelock, nomouse, callback )</source> === Argu...")
- 15:15, 2 September 2013 (diff | hist) . . (0) . . m cock.unbind (current)
- 15:15, 2 September 2013 (diff | hist) . . (+19) . . m cock.setMouseOffset (current)
- 15:14, 2 September 2013 (diff | hist) . . (+15) . . m cock.setMouseFactor (current)
- 15:13, 2 September 2013 (diff | hist) . . (+54) . . m cock.setJoystickHatMode
- 15:12, 2 September 2013 (diff | hist) . . (-1) . . m cock.setJoystickDeadzone (→Arguments) (current)
- 15:12, 2 September 2013 (diff | hist) . . (+111) . . m cock.setJoystickDeadzone
- 15:10, 2 September 2013 (diff | hist) . . (+3) . . m cock.setDefaultXBox360 (current)
- 15:10, 2 September 2013 (diff | hist) . . (0) . . m cock.setDefault (current)
- 15:09, 2 September 2013 (diff | hist) . . (0) . . m cock.setControls (current)
- 15:09, 2 September 2013 (diff | hist) . . (0) . . m cock.remapJoystickHat (current)
- 15:07, 2 September 2013 (diff | hist) . . (0) . . m cock.reloadJoysticks (current)
- 15:06, 2 September 2013 (diff | hist) . . (0) . . m cock.new
- 15:06, 2 September 2013 (diff | hist) . . (0) . . m cock.getMouseOffset (current)
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)