2013-11-23 16:09:46 +01:00
|
|
|
import QtQuick 2.0
|
|
|
|
|
|
|
|
Item{
|
2013-11-25 16:46:10 +01:00
|
|
|
property real ambient_light: 0.2
|
|
|
|
|
2013-12-25 02:26:18 +01:00
|
|
|
property color background_color: "#002200"
|
|
|
|
property color font_color: "#00ff00"
|
2013-11-25 02:19:44 +01:00
|
|
|
|
2013-12-25 02:26:18 +01:00
|
|
|
property real brightness_flickering: 0.2
|
2013-11-25 02:19:44 +01:00
|
|
|
property real noise_strength: 0.1
|
2013-12-25 02:26:18 +01:00
|
|
|
property real screen_distortion: 0.15
|
2013-11-25 02:19:44 +01:00
|
|
|
property real glowing_line_strength: 0.4
|
2013-11-23 16:09:46 +01:00
|
|
|
//property real faulty_screen_prob: 1.0
|
2013-12-25 02:26:18 +01:00
|
|
|
|
|
|
|
property bool scanlines: true
|
2013-11-23 16:09:46 +01:00
|
|
|
}
|