ISkyModule.cs 339 B

123456789101112
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace Funly.SkyStudio
  5. {
  6. // Generic interface for plugins that need to update as the sky profile animates (rain, lightning, etc).
  7. public interface ISkyModule
  8. {
  9. void UpdateForTimeOfDay(SkyProfile skyProfile, float timeOfDay);
  10. }
  11. }