- Support for multiple instances of overlay has been extended
- Instance support for all variables has been added
- Instance support for style overrides has been added
- Several overlays connected to the same room can now display component with instance specific settings (variables) as well as instance specific styles (style overrides)
For example if an overlay is connected using instance Hud (https://livetiming.sdk-gaming.co.uk/f1-overlay.html?room=test&instance=Hud):
- Weather display variable is set using:
Code:
Hud.Weather.Display = "Show";
instead of
Code:Overlay.Weather.Display = "Show";
- Weather component is moved using:
Code:
.hud > .weather { right: 100px; }
instead of
Code:.overlay > .weather { right: 100px; }