DayZ 1.29
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ GetDoorConditionPointFromSelection()

string Car::GetDoorConditionPointFromSelection ( string selection)
inlineprotected

См. определение в файле CarScript.c строка 2674

2675 {
2676 switch( selection )
2677 {
2678 case "seat_driver":
2679 return "seat_con_1_1";
2680 break;
2681 case "seat_codriver":
2682 return "seat_con_2_1";
2683 break;
2684 case "seat_cargo1":
2685 return "seat_con_1_2";
2686 break;
2687 case "seat_cargo2":
2688 return "seat_con_2_2";
2689 break;
2690 }
2691
2692 return "";
2693 }