add newer versions

This commit is contained in:
Bartek Dobrowolski-Nowakowski
2022-04-15 19:06:10 +02:00
parent e0a219a727
commit 07743bbf25
519 changed files with 82346 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
bEnableCheckTyresMod := 0
GoTo EndCheckTyresDef
CheckTyresOverheating:
if (bEnableCheckTyresMod = 0){
return
}
tc := BitGrab(tyreX, tyreY, box_size)
for i, c in tc
{
td := Distance(c, color_tyre_overheat)
if (td < tolerance ){
tyres_overheating := true
break
}
}
return
EndCheckTyresDef: