QML → Game on QML - Lesson 2. Adding traces of shots and points system
GameDev, QML, Qt, система очков
After the game arena and targets were made and added, it is time to implement the targets hit, misses and charging system and cheating points.
Scoring system will be as follows:
- In the case of near misses, I propose to …
Ruby → User Guide #22 - Ruby - Local variables
local variables, Ruby, ruby lesson, ruby уроки, user guide, локальные переменные, руководство пользователя
A local variable has a name starting with a lower case letter or an underscore character (_). Local variables do not, like globals and instance variables, have the value nil before initialization:
Readruby> $foo nil ruby> @foo nil ruby> foo …
Ruby → User Guide #21 - Ruby - Instance variables
Instance variables, Ruby, ruby lesson, ruby уроки, user guide, переменные класса, руководство пользователя
An instance variable has a name beginning with @, and its scope is confined to whatever object self refers to. Two different objects, even if they belong to the same class, are allowed to have different values for their instance …
ReadQt → Qt/C++ - Lesson 052. Customization Qt Audio player in the style of AIMP
QSS, QStyleSheet, AIMP, кастомизация, Qt, аудио, аудио плеер
Articles in this series:
The article on the audio player in Qt we learned how to play the audio tracks and switch between them in the playlist.
How about to customize the look of the …
ReadQML → QML - Lesson 026. Intents with Qt for Android, part 1
The “ intent ” is the main facility for interprocess communication on Android. Basically, an intent is an object that is processed by the operating system and then passed to one or more of the installed applications based on its …
ReadQt → Qt/C++ - Lesson 051. QMediaPlayer – simple audio player
QStandardItemModel, QMediaPlayer, QMediaPlaylist, Qt, аудио плеер
I suggest to write a simple audio player for mp3 files using Qt/C++, which will have a playlist, the ability to start / pause / stop tracks, as well as scroll through the tracks.
For the implementation of this ideas …
ReadRuby → User Guide #20 - Ruby - global variables
global variables, Ruby, ruby lesson, ruby уроки, user guide, глобальные переменные, руководство пользователя
A global variable has a name beginning with $. It can be referred to from anywhere in a program. Before initialization, a global variable has the special value nil.
Readruby> $foo nil ruby> $foo = 5 5 ruby> $foo 5 …
Ruby → User Guide #19 - Ruby - variables
Ruby, ruby lesson, ruby уроки, user guide, variables, переменные, руководство пользователя
Ruby has three kinds of variables, one kind of constant and exactly two pseudo-variables. The variables and the constants have no type. While untyped variables have some drawbacks, they have many more advantages and fit well with ruby's quick and …
ReadRuby → User Guide #18 - Ruby - procedure objects
procedure objects, Ruby, ruby lesson, ruby уроки, user guide, процедурные объекты, руководство пользователя
It is often desirable to be able to specify responses to unexpected events. As it turns out, this is most easily done if we can pass blocks of code as arguments to other methods, which means we want to be …
ReadQt → Qt Certification
Qt, QML, Certification, Сертификация
Since 2009 it has been possible to pass the Qt certification exam and become a Certified Qt Developer or Qt Specialist. The exams and certifications have now been updated to cover the latest Qt features. In order to support quality …
ReadRuby → User Guide #17 - Ruby - modules
modules, Ruby, ruby lesson, ruby уроки, user guide, модули, руководство пользователя
Modules in ruby are similar to classes, except:
- A module can have no instances.
- A module can have no subclasses.
- A module is defined by module ... end
Actually... the Module class of module is the superclass of the Class …
ReadRuby → User Guide #16 - Ruby - Singleton methods
method, Ruby, ruby lesson, ruby уроки, singleton, user guide, руководство пользователя
The behavior of an instance is determined by its class, but there may be times we know that a particular instance should have special behavior. In most languages, we must go to the trouble of defining another class, which would …
Read- Akiv Doros
- Nov. 11, 2024, 2:58 p.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:50points,
- Rating points-4
- molni99
- Oct. 26, 2024, 1:37 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:80points,
- Rating points4
- molni99
- Oct. 26, 2024, 1:29 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:20points,
- Rating points-10