Ruslan Muhlinin
Ruslan Muhlinin
So far I use the following code: ``` _width = width; _height = height; _dirtyRect = new Int32Rect(0, 0, width, height); _transformParameters = new TransformParameters(RectangleF.Empty, new System.Drawing.Size(_width, _height), ScalingPolicy.RespectAspectRatio, PixelFormat.Bgra32,...
Currently, `World` base coordinates are (0,0). But sometimes it's necessary to scroll it, for example in games like Mario Bros. where world is scrolled from right to left relative to...
As I described in #97, it's impossible now using of nested QML items as `Body`'s target. The problem that `target` position is relative to its parent but `Body` position is...
Since Body object isn't derived now from `QQuickItem` sometimes I meet difficulties with nested items. For example suppose we have custom component in Wheel.qml: ``` javascript Item { id: root...
I guess we should think about API documentation for qml-box2d plugin. Сertainly, it's close enough to Box2D API just as plugin code is clearly but anyway ... At least we...
I have a Linux embedded device and a speaker connected to it. I can play a wav file using `aplay file.wav` and I can list devices using: ``` aplay -L...
this code: ``` QtnPropertySet* set = new QtnPropertySet(this); ui->propertyWidget->setPropertySet(set); QtnPropertyQColor* textColor = new QtnPropertyQColor(set); textColor->setName(tr("textColor")); textColor->setDescription(tr("Foreground text color")); textColor->setValue(QColor(0, 0, 0)); ``` produces following: > textColor Delegate unknown; I've spent...
I have an image built using Yocto. The version is 3.0 (zeus) and unfortunately I can't change/upgrade it since that come from the board supplier. So I've cloned the zeus...
Is that possible to select range and assign style to that? I need to mark several cells as a table.
For some reason I cannot record on Xiaomi Poco X3 NFC. The phone is rooted, I've installed the BCR as described. But after pressing the `Record` button during a call...