Проверка шаблона шины для iOS
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

19 行
457B

  1. def generateWorldConstructor(c):
  2. fileName = f"{c.dir}/templates/world-constructor"
  3. fmt = c.readFile(fileName)[0]
  4. items = []
  5. for key in c.structure.world.fields:
  6. values = c.structure.world.fields[key]
  7. if (
  8. "init" in values or
  9. key == "model" or
  10. key == "net"
  11. ):
  12. ln = fmt.replace("%NAME%", key)
  13. items.append(ln)
  14. c.worldConstructor = "\n".join(items)