7
การนำระบบเกียร์มาใช้ในเกมรถยนต์
ฉันกำลังพยายามสร้างเกมรถง่าย ๆ ที่มีการเปลี่ยนเกียร์แบบแมนนวล อย่างไรก็ตามฉันมีปัญหาเล็กน้อยในการเปลี่ยนเกียร์ นี่คือรหัสปัจจุบันของฉันสำหรับ "รถยนต์": int gear = 1; // Current gear, initially the 1st int gearCount = 5; // Total no. of gears int speed = 0; // Speed (km/h), initially 0 int[] maxSpeedsPerGear = new int[] { 40, // First gear max. speed at max. RPM 70, …
23
simulations
car