38261d0800
* Updated all copyright headers to split the longer original copyright line into 2 shorter lines Signed-off-by: Steve Pham <spham@amazon.com>
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 %} |