This repository has been archived on 2020-04-21. You can view files and clone it, but cannot push or open issues or pull requests.
ludum-dare-46/docs/assets/js/constants.js
rsninja722 0b4a1cdb92 day1
2020-04-18 00:15:33 -04:00

42 lines
1.1 KiB
JavaScript

var constants = {
testOrganizer: {
EXAMPLE_DELETE_ME_LATER : 1277336
},
ui: {
// These are the variables that control injection/cssinjector.js
// To add a new theme var, you must also add it to the injector
theme: {
// Theme variables specific to the webpage container
webpage: {
bg_color: "#242424",
text_color: "#ffffff",
canvas_border: "rgb(63, 63, 63)",
loading_animation_color: "#ff4136"
},
// Theme variables specific to the game
game: {
}
},
// Heart rate monitor UI constants
heartRate: {
history_length: 100,
//300 squares/min
scroll_speed: 0.13333,
pr_width: 0.16,
qrs_width: 0.1,
qt_width: 0.39,
complex_width: 0.65
}
},
legs:{
size:{
maximumMovement: 30
}
}
};