Skip to content
Joseph Korinek edited this page May 22, 2015 · 4 revisions

ICLSSpace

public interface ICLSSpace
{
    List<ICLSPart> Parts {get;}
    int MaxCrew {get;}
    String Name {get;set;}
    ICLSVessel Vessel {get;}
    List<ICLSKerbal> Crew {get;}
    void Highlight(bool val);
}

Properties

Parts

Methods

  • Highlight This method provides a means to enable or disable highlighting of a provided space object. This does not allow changing the highlight color, as the color is determined by other factors, such as passibility, part type, etc. Passing a Boolean value of true enables highlighting. Passing a bool false disable highlighting. This method need only be fire once, as it will set a flag on the associated parts to ensure the part stays highlighted until commanded to turn off.

Clone this wiki locally