1
0
mirror of https://github.com/Swordfish90/cool-retro-term.git synced 2025-01-31 02:01:19 +00:00

added scanlines in settings and updated defaults

This commit is contained in:
Filippo Scognamiglio 2013-12-25 02:26:18 +01:00
parent 15f5dd274a
commit 9b6b487389

View File

@ -3,12 +3,14 @@ import QtQuick 2.0
Item{ Item{
property real ambient_light: 0.2 property real ambient_light: 0.2
property color background_color: "#000000" property color background_color: "#002200"
property color font_color: "#77ff77" property color font_color: "#00ff00"
property real brightness_flickering: 0.4 property real brightness_flickering: 0.2
property real noise_strength: 0.1 property real noise_strength: 0.1
property real screen_distortion: 0.2 property real screen_distortion: 0.15
property real glowing_line_strength: 0.4 property real glowing_line_strength: 0.4
//property real faulty_screen_prob: 1.0 //property real faulty_screen_prob: 1.0
property bool scanlines: true
} }