Remove unneeded call to LoadStreamingTextures - leave todo for fixing low res

This commit is contained in:
Nick 2023-07-06 00:53:22 -04:00
parent f60620c5a5
commit 6c4d896367

View File

@ -1,5 +1,6 @@
using NewHorizons.Builder.General; using NewHorizons.Builder.General;
using NewHorizons.Components; using NewHorizons.Components;
using NewHorizons.Components.Fixers;
using NewHorizons.External.Modules.Props; using NewHorizons.External.Modules.Props;
using NewHorizons.Handlers; using NewHorizons.Handlers;
using NewHorizons.Utility; using NewHorizons.Utility;
@ -265,10 +266,10 @@ namespace NewHorizons.Builder.Props
socket._sector = sector; socket._sector = sector;
} }
// Fix slide reel - Softlocks if this object is a vision torch // TODO: Fix low res reels
else if(!isTorch && component is SlideCollectionContainer container) else if(component is SlideReelItem)
{ {
sector.OnOccupantEnterSector.AddListener(_ => container.LoadStreamingTextures());
} }
else if(component is NomaiRemoteCameraPlatform remoteCameraPlatform) else if(component is NomaiRemoteCameraPlatform remoteCameraPlatform)