diff options
author | David Thompson <dthompson2@worcester.edu> | 2015-01-19 11:04:14 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-01-19 11:04:14 -0500 |
commit | 40b9a40616515f5e76bb9cdd57f627532a45277e (patch) | |
tree | 693b8bd190ca9d8a078fd44e9c663c1171bbff34 | |
parent | f5a130d694653f12c25254774d63989dfcc1bbc9 (diff) |
doc: input: Relabel signals as "Scheme Signals".
* doc/api/input.texi: s/Signal/Scheme Signal/
-rw-r--r-- | doc/api/input.texi | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/api/input.texi b/doc/api/input.texi index 7d13ab9..3a4e6a3 100644 --- a/doc/api/input.texi +++ b/doc/api/input.texi @@ -32,11 +32,11 @@ hook should accept two arguments: @code{key}, a symbol, and @code{char}, a unicode character. @end defvr -@defvr {Signal} key-last-down +@defvr {Scheme Signal} key-last-down The last key pressed. @end defvr -@defvr {Signal} key-last-up +@defvr {Scheme Signal} key-last-up The last key released. @end defvr @@ -54,11 +54,11 @@ Create a signal whose value is a 2D unit vector that can be used for directional keys: @code{up}, @code{down}, @code{left}, @code{right}. @end deffn -@defvr {Signal} key-arrows +@defvr {Scheme Signal} key-arrows A 2D directional vector based on the state of the arrow keys. @end defvr -@defvr {Signal} key-wasd +@defvr {Scheme Signal} key-wasd A 2D directional vector based on the state of the WASD keys. @end defvr @@ -88,23 +88,23 @@ to this hook should accept three arguments: Symbol @code{button} and numbers @code{x} and @code{y}. @end defvr -@defvr {Signal} mouse-x +@defvr {Scheme Signal} mouse-x The mouse X coordinate. @end defvr -@defvr {Signal} mouse-y +@defvr {Scheme Signal} mouse-y The mouse Y coordinate. @end defvr -@defvr {Signal} mouse-position +@defvr {Scheme Signal} mouse-position The mouse position as a 2D vector. @end defvr -@defvr {Signal} mouse-last-down +@defvr {Scheme Signal} mouse-last-down The last mouse button pressed. @end defvr -@defvr {Signal} mouse-last-up +@defvr {Scheme Signal} mouse-last-up The last mouse button clicked. @end defvr |