Evgenii Legotckoi
Evgenii LegotckoiOct. 20, 2015, 12:06 p.m.

QML - Lesson 005. Using a Sprite and AnimatedSprite in QML Qt

Once on the sprites was written three lessons by drawing them to their practical application in Qt in this and this article, I believe that we can not ignore the use of sprites in QML Qt.

Sprites are used in QML is even easier than in Qt / C ++, QML because there are classes that are specifically designed to work with sprites: Sprite and AnimatedSprite.

The project structure to work with Sprite and AnimatedSprite

The project is created as a standard project QtQuick with controls, and then I throw out all superfluous Tipo menyubara and buttons. I am leaving only that we will use for demonstration.

  • main.cpp - the main project file that runs qml file;
  • main.qml - application window;
  • MainForm.ui.qml - form to work with the designer;
  • sprite_sheet.png - the image of our sprite.

sprite_sheet.png

main.qml

As a lesson in itself is quite simple, it will focus on the code only this file.

In this tutorial, I suggest two options for the use of sprites. One embodiment - is the application via SpriteSequence , which can be placed in different sprites with different sources. The second option - is using AnimatedSprite , which is taken one source. Both the use of sprites in this lesson will give the same result.

In SpriteSequence is given sprite size and its position in the main window of the application, while the frame size of the sprite and the number of its personnel is defined already in the Sprite object, which is placed in SpriteSequence . In the SpriteSequence you can put a few of these objects Sprite.

In the case of all parameters AnimatedSprite sizes and locations, as well as its size and frame number are specified in the AnimatedSprite. The difference is that only one image can be taken as a source of sprites.

Also, you must specify frameSync like true. Then sprites will work synchronously, if you do not, then they will run slowly and alternately.

import QtQuick 2.5
import QtQuick.Controls 1.4
import QtQuick.Dialogs 1.2

ApplicationWindow {
    visible: true
    width: 640
    height: 480
    title: qsTr("Hello World")

    MainForm {
        // Stretch the shape of the main window over the application window
        anchors.fill: parent

        /* Stretch the shape of the main window over the application window. 
         * Object sprites sequence. 
         * This object can be set different sprites with different pictures and their sequence
         * */
        SpriteSequence {
            id: image
            width: 20   // The width of the area under the sprite
            height: 20  // The height of the area under the sprite
            // Sprite is located at the top left of the application window
            anchors.left: parent.left
            anchors.leftMargin: 100
            anchors.top: parent.top
            anchors.topMargin: 100

            Sprite {
                id: sprite
                source: "sprite_sheet.png"
                frameCount: 15     
                frameWidth: 20   
                frameHeight:  20   
                frameSync: true     
            }
        }

        AnimatedSprite {
            id: animatedSprite

            width: 20 // The width of the area under the sprite 
            height: 20 // The height of the area under the sprite
            // Sprite is located at the top right of the application window
            anchors.right: parent.right
            anchors.rightMargin: 100
            anchors.top: parent.top
            anchors.topMargin: 100

            source: "sprite_sheet.png"
            frameCount: 15  
            frameWidth: 20  
            frameHeight: 20 
            frameSync: true 
        }
    }
}

Conclusion

As a result, you will receive an application in the left and right corner which will house works equally sprites explosions. Demonstration applications, see the video tutorial, are also shown in the video tutorial behaviors sprites if not configured properly.

Video

We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

Comments

Only authorized users can post comments.
Please, Log in or Sign up
AD

C ++ - Test 004. Pointers, Arrays and Loops

  • Result:50points,
  • Rating points-4
m

C ++ - Test 004. Pointers, Arrays and Loops

  • Result:80points,
  • Rating points4
m

C ++ - Test 004. Pointers, Arrays and Loops

  • Result:20points,
  • Rating points-10
Last comments
ИМ
Игорь МаксимовNov. 22, 2024, 10:51 p.m.
Django - Tutorial 017. Customize the login page to Django Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
Evgenii Legotckoi
Evgenii LegotckoiNov. 1, 2024, 12:37 a.m.
Django - Lesson 064. How to write a Python Markdown extension Добрый день. Да, можно. Либо через такие же плагины, либо с постобработкой через python библиотеку Beautiful Soup
A
ALO1ZEOct. 19, 2024, 6:19 p.m.
Fb3 file reader on Qt Creator Подскажите как это запустить? Я не шарю в программировании и кодинге. Скачал и установаил Qt, но куча ошибок выдается и не запустить. А очень надо fb3 переконвертировать в html
ИМ
Игорь МаксимовOct. 5, 2024, 5:51 p.m.
Django - Lesson 064. How to write a Python Markdown extension Приветствую Евгений! У меня вопрос. Можно ли вставлять свои классы в разметку редактора markdown? Допустим имея стандартную разметку: <ul> <li></li> <li></l…
d
dblas5July 5, 2024, 9:02 p.m.
QML - Lesson 016. SQLite database and the working with it in QML Qt Здравствуйте, возникает такая проблема (я новичок): ApplicationWindow неизвестный элемент. (М300) для TextField и Button аналогично. Могу предположить, что из-за более новой верси…
Now discuss on the forum
m
moogoNov. 22, 2024, 6:17 p.m.
Mosquito Spray System Effective Mosquito Systems for Backyard | Eco-Friendly Misting Control Device & Repellent Spray - Moogo ; Upgrade your backyard with our mosquito-repellent device! Our misters conce…
Evgenii Legotckoi
Evgenii LegotckoiJune 25, 2024, 1:11 a.m.
добавить qlineseries в функции Я тут. Работы оень много. Отправил его в бан.
t
tonypeachey1Nov. 15, 2024, 5:04 p.m.
google domain [url=https://google.com/]domain[/url] domain [http://www.example.com link title]
NSProject
NSProjectJune 4, 2022, 1:49 p.m.
Всё ещё разбираюсь с кешем. В следствии прочтения данной статьи. Я принял для себя решение сделать кеширование свойств менеджера модели LikeDislike. И так как установка evileg_core для меня не была возможна, ибо он писался…

Follow us in social networks