mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
limiting pathfinding for units to their types of cells
This commit is contained in:
@@ -2,7 +2,7 @@ numUnits = 4
|
||||
|
||||
UnitClass = {VESSEL = 0, ENGINEER = 1, SAMPLE_STRUCTURE = 2};
|
||||
|
||||
UnitType = {UNDERWATER = 0, SEA_LEVEL = 1, LAND = 2, AIR = 3};
|
||||
UnitType = {UNDERWATER = 0, SEA_LEVEL = 1, HOVER = 2, LAND = 3, AIR = 4};
|
||||
|
||||
unitClass = {
|
||||
UnitClass.VESSEL, UnitClass.VESSEL,
|
||||
@@ -10,8 +10,8 @@ unitClass = {
|
||||
};
|
||||
|
||||
unitType = {
|
||||
UnitType.SEA_LEVEL, UnitType.UNDERWATER,
|
||||
UnitType.LAND, UnitType.LAND
|
||||
UnitType.HOVER, UnitType.SEA_LEVEL,
|
||||
UnitType.LAND, UnitType.HOVER
|
||||
}
|
||||
|
||||
isVehicle = {
|
||||
|
||||
Reference in New Issue
Block a user