mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-22 03:53:04 +00:00
...
This commit is contained in:
parent
653bf4c7ae
commit
c258137b70
2 changed files with 8 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
|||
using System;
|
||||
using SanAndreasUnity.Utilities;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
|
@ -158,5 +159,10 @@ namespace SanAndreasUnity.Editor
|
|||
{
|
||||
return DisplayPausableProgressBar(title, text, progress, "Are you sure ?", "Continue", "Quit");
|
||||
}
|
||||
|
||||
public static void FocusSceneViewsOnPosition(Vector3 pos)
|
||||
{
|
||||
SceneView.sceneViews.Cast<SceneView>().ForEach(s => s.LookAt(pos));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -65,7 +65,7 @@ namespace SanAndreasUnity.Editor
|
|||
|
||||
void GoTo(PathNode node)
|
||||
{
|
||||
SceneView.sceneViews.Cast<SceneView>().ForEach(s => s.LookAt(node.Position));
|
||||
EditorUtils.FocusSceneViewsOnPosition(node.Position);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue