mirror of
https://github.com/thegeneralist01/Scene-Manager-DevRepo
synced 2026-01-11 15:40:29 +01:00
Changed PathNum to Number
This commit is contained in:
parent
30ff396e0d
commit
9a18c529cc
1 changed files with 4 additions and 4 deletions
|
|
@ -11,7 +11,7 @@ namespace SceneManager
|
|||
|
||||
public class Path
|
||||
{
|
||||
public int PathNum { get; private set; }
|
||||
public int Number { get; private set; }
|
||||
public bool IsEnabled { get; private set; }
|
||||
public State State { get; set; }
|
||||
|
||||
|
|
@ -19,20 +19,20 @@ namespace SceneManager
|
|||
|
||||
public Path(int pathNum, bool pathFinished, bool pathDisabled, List<Waypoint> waypoints)
|
||||
{
|
||||
PathNum = pathNum;
|
||||
Number = pathNum;
|
||||
IsEnabled = pathDisabled;
|
||||
Waypoints = waypoints;
|
||||
}
|
||||
|
||||
public Path(int pathNum, State pathState)
|
||||
{
|
||||
PathNum = pathNum;
|
||||
Number = pathNum;
|
||||
State = pathState;
|
||||
}
|
||||
|
||||
public void SetPathNumber(int pathNum)
|
||||
{
|
||||
PathNum = pathNum;
|
||||
Number = pathNum;
|
||||
}
|
||||
|
||||
private void LowerWaypointBlipsOpacity()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue