// Copyright (C) 2017 Klaralvdalens Datakonsult AB (KDAB). // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause #include #include #include #include #include #include #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(); }