Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
qtquick3d-tool-instancer.qdoc
Go to the documentation of this file.
1// Copyright (C) 2021 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
3
4/*!
5\page qtquick3d-tool-instancer.html
6\title Instancer Tool
7\brief Command line tool for converting instance data from XML to binary.
8
9The instancer tool is a command line application that reads an instancing table in the XML format defined by
10\l[QML]{FileInstancing}{FileInstancing}, and converts it to a format that can be directly mapped to memory.
11
12\section1 Usage
13
14To convert the file \e{instances.xml} and save the result in \e{instances.xml.bin}:
15\badcode
16$ instancer instances.xml
17\endcode
18
19To convert the file \e{infile.xml} and save the result in \e{outfile.bin}:
20\badcode
21$ instancer infile.xml outfile.bin
22\endcode
23
24*/