...
This commit is contained in:
parent
8f0ddf6edb
commit
19d7442216
|
|
@ -166,7 +166,7 @@ public static class MyEditorUtil
|
|||
var longd = go.GetComponent<NoSeeLongDMob>();
|
||||
if (longd == null) go.AddComponent<NoSeeLongDMob>();
|
||||
|
||||
CommonSetting(go, ObstacleAvoidanceType.LowQualityObstacleAvoidance, 51, "Actor");
|
||||
CommonSetting(go, ObstacleAvoidanceType.LowQualityObstacleAvoidance, 0, "Actor");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -181,7 +181,7 @@ public static class MyEditorUtil
|
|||
if (ma == null) ma = go.AddComponent<PetActor>();
|
||||
ma.m_Role = eRole.Pet;
|
||||
|
||||
CommonSetting(go, ObstacleAvoidanceType.NoObstacleAvoidance, 51, "Actor");
|
||||
CommonSetting(go, ObstacleAvoidanceType.NoObstacleAvoidance, 99, "Actor");
|
||||
}
|
||||
}
|
||||
[MenuItem("Edit/PCSetting", false, -1003)]
|
||||
|
|
@ -406,7 +406,7 @@ public static class MyEditorUtil
|
|||
var wa = go.GetComponent<WorkerActor>();
|
||||
if (wa == null) wa = go.AddComponent<WorkerActor>();
|
||||
|
||||
CommonSetting(go, ObstacleAvoidanceType.NoObstacleAvoidance, 0, "Default");
|
||||
CommonSetting(go, ObstacleAvoidanceType.NoObstacleAvoidance, 99, "Default");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue