Touch Sensor: Difference between revisions

From Fancade Wiki
(Created page with "{{Block |image=Touch_Sensor.png |type=s |input1={{Port|e|Before}} |output1={{Port|e|Touched}} |output2={{Port|n|Screen X}} |output3={{Port|n|Screen Y}} |output4={{Port|e|After}} }} Touch Sensor allows to get user input from screen touch or a mouse. == Settings == thumb|Touch Sensor settings The touch sensor has two settings, which can be changed by selecting the script and tapping the buttons that appear in the bottom right corner....")
 
m (Add example and related)
 
(2 intermediate revisions by 2 users not shown)
Line 2: Line 2:
|image=Touch_Sensor.png
|image=Touch_Sensor.png
|type=s
|type=s
|folder=Control
|input1={{Port|e|Before}}
|input1={{Port|e|Before}}
|output1={{Port|e|Touched}}
|output1={{Port|e|Touched}}
Line 24: Line 25:


The second setting changes how many fingers have to be touching the screen to trigger the touch sensor.
The second setting changes how many fingers have to be touching the screen to trigger the touch sensor.
== Example ==
To determine which left or right side of the screen is touched:
{{Image|Touch_Sensor_left_or_right.png}}
== Related ==
* [[Swipe Sensor]]
[[Category:Blocks]]

Latest revision as of 16:24, 27 June 2024

Touch Sensor
Touch_Sensor.png
TypeScript block
ColliderNone
FolderControl
Ports
Inputs Before
Outputs Touched
Screen X
Screen Y
After

Touch Sensor allows to get user input from screen touch or a mouse.

Settings

Touch Sensor settings

The touch sensor has two settings, which can be changed by selecting the script and tapping the buttons that appear in the bottom right corner.

The first setting has three options:

  • Touching: The touch sensor will trigger every frame during touching
  • Begins: The touch sensor will trigger once when touching begins
  • Ends: The touch sensor will trigger once when touching stops

The second setting changes how many fingers have to be touching the screen to trigger the touch sensor.

Example

To determine which left or right side of the screen is touched:

Touch_Sensor_left_or_right.png

Related