You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
771 B
Django/Jinja
18 lines
771 B
Django/Jinja
{####
|
|
# Copyright (c) Contributors to the Open 3D Engine Project.
|
|
# For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
#
|
|
####-#}
|
|
|
|
{% import 'Text_Utilities.jinja' as Utils -%}
|
|
|
|
{% set FilteredCompontents = SerializeContext|FilterByBase('{EDFCB2CF-F75D-43BE-B26B-F35821B29247}') %}
|
|
{% set FilteredEntities = SerializeContext|FilterByBase('{75651658-8663-478D-9090-2432DFCAFA44}') %}
|
|
{% set FilteredContext = dict(FilteredCompontents.items() + FilteredEntities.items()) %}
|
|
{% for uuid, class in FilteredContext.items()|sort(attribute='1.Name') %}
|
|
{{- Utils.PrintName(uuid, class) }}
|
|
{{- Utils.PrintClassContent(SerializeContext, 2, uuid) }}
|
|
{{- safe }}
|
|
{% endfor %} |