Renpy可粘贴输入
Renpy pasteable input
我正在开发的一款游戏需要一个可以粘贴特殊代码的输入。该代码是 24 个字符的随机散列,玩家很难手动编写。我还没有找到任何高质量的方法来实现这样的输入。
这能做到吗?如果是,怎么做?
我不久前才开始使用 Renpy,目前我的知识还很匮乏
在documentation中提到了。
Input
Creates a text input area, which allows the user to enter text. When > the user presses return, the text will be returned by the interaction.
copypaste
If True, it becomes possible to copy and paste into this input. (By
default, disabled.)
只需设置copypaste=True
我正在开发的一款游戏需要一个可以粘贴特殊代码的输入。该代码是 24 个字符的随机散列,玩家很难手动编写。我还没有找到任何高质量的方法来实现这样的输入。
这能做到吗?如果是,怎么做?
我不久前才开始使用 Renpy,目前我的知识还很匮乏
在documentation中提到了。
Input
Creates a text input area, which allows the user to enter text. When > the user presses return, the text will be returned by the interaction.
copypaste
If True, it becomes possible to copy and paste into this input. (By default, disabled.)
只需设置copypaste=True