{% for tag in world.tags %}
{% if not tag.startswith('system_') and not tag.startswith('admin_') %}
{{ tag.replace('author_tag_', '') }}
{% endif %}
{% endfor %}
支持平台:
{% set platforms = [] %}
{% for package in world.unity_packages %}
{% if package.platform not in platforms %}
{% set _ = platforms.append(package.platform) %}
{{ package.platform }}
{% endif %}
{% endfor %}