// Use this for initialization
    void Start()
    {
        strobeLight = GetComponent<StrobeLight>();

        if( null == strobeLight )
        {
            Debug.LogError( "Could not find 'StrobeLight' component" );
        }
    }
Esempio n. 2
0
 public StrobleLightsManagerConfigurator forLightsWithName(String name)
 {
     light = manager.addStrobeLight(name);
     return(this);
 }