mirror of https://github.com/qt/qt3d.git
26 lines
769 B
C++
26 lines
769 B
C++
// Copyright (C) 2017 Klaralvdalens Datakonsult AB (KDAB).
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
|
|
|
#include <QGuiApplication>
|
|
#include <Qt3DAnimation/QAnimationAspect>
|
|
#include <Qt3DQuickExtras/Qt3DQuickWindow>
|
|
#include <Qt3DQuick/QQmlAspectEngine>
|
|
#include <QQmlEngine>
|
|
#include <QQmlContext>
|
|
|
|
#include "animationfactory.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
QGuiApplication app(argc, argv);
|
|
|
|
AnimationFactory animationFactory;
|
|
|
|
Qt3DExtras::Quick::Qt3DQuickWindow view;
|
|
view.registerAspect(new Qt3DAnimation::QAnimationAspect());
|
|
view.engine()->qmlEngine()->rootContext()->setContextProperty("_animationFactory", &animationFactory);
|
|
view.setSource(QUrl("qrc:/main.qml"));
|
|
view.show();
|
|
return app.exec();
|
|
}
|