Question by 
               christopf · Feb 10, 2017 at 11:13 AM · 
                networkingnetworknetworkplayerambient lightrendersettings  
              
 
              Networking and RenderSettings (ambientLight)
Is there a chance to edit the RenderSettings only client-sided? Like having a different RenderSettings.ambientLight for each client, locally?
My past attempts on this looking like this
         if (!isLocalPlayer) {       
 
             return;
         }
 
         RenderSettings.ambientLight = TheNewerCycleOfLifeAndDeath(nighttime);
 
 
               But this disables the change of the RenderSettings.ambientLight completly. If i remove the trigger for checking if client, it changes it for everyone on the server.
               Comment
              
 
               
              Your answer