mirror of
https://github.com/Swordfish90/cool-retro-term.git
synced 2025-01-19 12:33:51 +00:00
26 lines
499 B
QML
26 lines
499 B
QML
import QtQuick 2.2
|
|
import "utils"
|
|
|
|
TerminalFrame{
|
|
id: frame
|
|
z: 2.1
|
|
anchors.fill: parent
|
|
addedWidth: 140
|
|
addedHeight: 140
|
|
borderLeft: 116
|
|
borderRight: 116
|
|
borderTop: 116
|
|
borderBottom: 116
|
|
imageSource: "../images/screen-frame.png"
|
|
normalsSource: "../images/screen-frame-normals.png"
|
|
|
|
distortionCoefficient: 1.5
|
|
|
|
displacementLeft: 55
|
|
displacementTop: 50
|
|
displacementRight: 55
|
|
displacementBottom: 50
|
|
|
|
shaderString: "FrameShader.qml"
|
|
}
|