From 50125b558bf044431bf51f2c6c4012a0e7fc0705 Mon Sep 17 00:00:00 2001 From: Juju Adams Date: Fri, 1 Sep 2023 18:24:09 +0100 Subject: [PATCH] Update Icon-Config.md --- docs/6.1/Icon-Config.md | 30 ++++++++++++++++++++++++------ 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/docs/6.1/Icon-Config.md b/docs/6.1/Icon-Config.md index 857f2d29b..04b7bd575 100644 --- a/docs/6.1/Icon-Config.md +++ b/docs/6.1/Icon-Config.md @@ -16,9 +16,11 @@ **Returns:** N/A (`undefined`) -|Name |Datatype|Purpose | -|------|--------|----------------------------------------------------------------------------------| -|`icon`|any |The value to return for an empty binding (typically the result of an unbound verb)| +|Name |Datatype|Purpose | +|------|--------|----------------------------------------| +|`icon`|any |The value to return for an empty binding| + +The value set via this function will be returned when an empty binding is evaluated, which is typically the result of an unbound verb.   @@ -28,9 +30,25 @@ **Returns:** N/A (`undefined`) -|Name |Datatype|Purpose | -|------|--------|---------------------------------------------------------------------------------------| -|`icon`|any |The value to return for an invalid binding (typically the result of some sort of error)| +|Name |Datatype|Purpose | +|------|--------|------------------------------------------| +|`icon`|any |The value to return for an invalid binding| + +The value set via this function will be returned when an invalid binding is evaluated, where an invalid binding is usually the result of some sort of error. + +  + +## …_icon_touch + +`input_icon_touch(icon)` + +**Returns:** N/A (`undefined`) + +|Name |Datatype|Purpose | +|------|--------|------------------------------------------------| +|`icon`|any |The value to return for a virtual button binding| + +The value set via this function will be returned when a touch binding created by [`input_binding_virtual_button()`](Functions-(Binding-Creators)?id=binding_virtual_button) is evaluated.