mirror of
https://github.com/Swordfish90/cool-retro-term.git
synced 2025-01-19 12:33:51 +00:00
26 lines
505 B
QML
26 lines
505 B
QML
import QtQuick 2.2
|
|
import "utils"
|
|
|
|
TerminalFrame{
|
|
id: frame
|
|
z: 2.1
|
|
anchors.fill: parent
|
|
addedWidth: 200
|
|
addedHeight: 370
|
|
borderLeft: 170
|
|
borderRight: 170
|
|
borderTop: 250
|
|
borderBottom: 250
|
|
imageSource: "../images/black-frame.png"
|
|
normalsSource: "../images/black-frame-normals.png"
|
|
|
|
distortionCoefficient: 1.9
|
|
|
|
displacementLeft: 80.0
|
|
displacementTop: 65.0
|
|
displacementRight: 80.0
|
|
displacementBottom: 65.0
|
|
|
|
shaderString: "FrameShader.qml"
|
|
}
|