mirror of
https://github.com/thegeneralist01/Scene-Manager-DevRepo
synced 2026-01-11 23:50:29 +01:00
Updated barrier references as a result of new Barrier class
This commit is contained in:
parent
92c444e9ea
commit
75e1fbcc82
2 changed files with 3 additions and 2 deletions
|
|
@ -60,9 +60,9 @@ namespace SceneManager
|
||||||
}
|
}
|
||||||
|
|
||||||
// Clean up cones
|
// Clean up cones
|
||||||
foreach (Rage.Object cone in BarrierMenu.barriers.Where(c => c))
|
foreach (Barrier barrier in BarrierMenu.barriers.Where(b => b.GetBarrier()))
|
||||||
{
|
{
|
||||||
cone.Delete();
|
barrier.GetBarrier().Delete();
|
||||||
}
|
}
|
||||||
if (BarrierMenu.shadowBarrier)
|
if (BarrierMenu.shadowBarrier)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -51,6 +51,7 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="AITasking.cs" />
|
<Compile Include="AITasking.cs" />
|
||||||
|
<Compile Include="Barrier.cs" />
|
||||||
<Compile Include="DebugGraphics.cs" />
|
<Compile Include="DebugGraphics.cs" />
|
||||||
<Compile Include="Hints.cs" />
|
<Compile Include="Hints.cs" />
|
||||||
<Compile Include="Menus\BarrierMenu.cs" />
|
<Compile Include="Menus\BarrierMenu.cs" />
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue