9 lines
255 B
TypeScript
9 lines
255 B
TypeScript
sensors.touch1.onEvent(TouchSensorEvent.Pressed, function () {
|
|
})
|
|
sensors.touch2.onEvent(TouchSensorEvent.Bumped, function () {
|
|
})
|
|
sensors.touch3.onEvent(TouchSensorEvent.Released, function () {
|
|
})
|
|
sensors.touch4.isPressed();
|
|
sensors.touch4.wasPressed();
|