listRandom 函数

语法

  • float listRandom(stringList)

参数

  1. stringListstring

返回

返回 stringList 的随机项目。

描述

listRandom 函数用于返回 stringList 的随机项目。

注:

  • 要获取随机元素,通常需要直接搭配使用通配符搜索。 请参阅示例
  • Stringlist 是存储在一个字符串内的一系列字符串。 各个元素以分号 (";") 分隔。 每个项目的后面必须有分号,最后一个项目也是如此! 数据类型为“字符串”,因此与在其他脚本语言中不同,它不是数组。

相关内容

示例

listRandom("rule;your;city;")
# result = "rule" or "your" or "city"
listRandom(fileSearch("/myProject/assets/*.jpg"))
# result = a random .jpg image from that directory.
listRandom(fileSearch("*.obj"))
# result = a random asset from the whole workspace.