作者:
{{ world.author_name }}
创建时间:
{{ world.created_at.strftime('%Y-%m-%d %H:%M') }}
更新于:
{{ world.updated_at.strftime('%Y-%m-%d %H:%M') }}
容量:
{{ world.capacity }}人
当前人数:
{{ world.occupants }}人
收藏数:
{{ world.favorites }}
标签:
{% 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 %}