1
0
mirror of https://github.com/Swordfish90/cool-retro-term.git synced 2024-10-06 19:10:51 +01:00
cool-retro-term/qml/cool-old-term/ShaderSettings.qml

29 lines
793 B
QML
Raw Normal View History

2013-12-25 17:44:46 +00:00
import QtQuick 2.1
2013-11-23 15:09:46 +00:00
Item{
2013-11-25 15:46:10 +00:00
property real ambient_light: 0.2
property color background_color: "#002200"
property color font_color: "#00ff00"
property real screen_flickering: 0.1
property real noise_strength: 0.1
property real screen_distortion: 0.15
property real glowing_line_strength: 0.4
property bool scanlines: true
2013-12-26 00:12:14 +00:00
property string frame_source: frames_list.get(frames_index).source
property int frames_index: 1
2013-12-26 21:00:35 +00:00
property var frames_list: framelist
ListModel{
id: framelist
2013-12-26 00:12:14 +00:00
ListElement{text: "No frame"; source: "./frames/NoFrame.qml"}
ListElement{text: "Simple white frame"; source: "./frames/WhiteSimpleFrame.qml"}
ListElement{text: "Rough black frame"; source: "./frames/BlackRoughFrame.qml"}
}
2013-11-23 15:09:46 +00:00
}