1
0
mirror of https://github.com/lexogrine/cs2-react-hud.git synced 2026-05-04 04:03:10 +02:00

initial commit

This commit is contained in:
Hubert Walczak
2023-09-11 12:37:32 +02:00
commit 989ede8638
247 changed files with 7656 additions and 0 deletions
@@ -0,0 +1,37 @@
import radar from './radar.png'
const high = {
"origin": {
"x": 473.1284773048749,
"y": 165.7329003801045
},
"pxPerUX": 0.14376095926926907,
"pxPerUY": -0.14736670935219626
};
const low = {
"origin": {
"x": 473.66746071612374,
"y": 638.302101754172
},
"pxPerUX": 0.1436068746398272,
"pxPerUY": -0.14533406508526941
};
const config = {
configs: [
{
id: 'high',
config: high,
isVisible: (height: number) => height >= -450,
},
{
id: 'low',
config: low,
isVisible: (height: number) => height < -450,
},
],
file: radar
}
export default config;