函数:Step 设置步长
函数功能:设置在使用 touch:move 时每一小步移动的步长
函数方法
touch = touch:Step(step)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
step | number | 否 | 步长,不写默认值为 10 像素 |
函数用例
--此函数为触动精灵专用函数请勿用于积木编程
--使用本函数库必须在脚本开头引用并将文件放到设备 lua 目录下
--仅支持 V1.2.7 以上版本 TSLib 使用
require "TSLib"
touch():Step(5):on(100,100):move(200,200):off()
--使用本函数库必须在脚本开头引用并将文件放到设备 lua 目录下
--index 仅支持 V1.3.3 以上版本 TSLib 使用
require "TSLib"
local touch = touch()
touch:Step(5):on(100,100):move(200,200):off()
注意事项
安卓设备点击、滑动函数无效可以换此函数再试下
此函数为触动精灵专用函数请勿用于积木编程