9.一字一顿朗读编辑框的内容。
上面解释编辑框的字符和朗读编辑框的内容都有了。下面分享一字一顿的朗读。由于解说读屏没有这个功能。下面还需要用到代码。感谢CoolsnowBye提供的代码。
下面是代码:
local text=service.getText(node)
local i=1
local t={}
while utf8.sub(text,i,i) and i<10000 do
table.insert(t,utf8.sub(text,i,i)..",")
i=i+1
end
service.speak(table.concat(t))
return true
来自解说社区客户端 |