Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试创建一个能够检测加速度计数据并将它们写入 file.txt 的 Sifteo 游戏;我知道存在几种方法可以在 shell 上可视化数据(但它需要连接 pc 上的基础)或将它们存储在 StoredObject 中,但我想创建一个文本文件。在 sifteo sdk 的文档中,我发现了一些关于脚本 lua 的内容。没看懂,能帮帮我吗???
谢谢
如果您只是询问如何在 lua 脚本中制作 .txt 文件,它应该类似于
file = io.open("FileName.txt","w") file:write("Information") file:close()
如果您是 lua 新手,您还可以通过将其替换为字符串“Information”来插入来自变量或表的信息。
希望这有帮助。