ProjectStorms.ShipPartDestroy.IsPartDestroyed C# (CSharp) 메소드

IsPartDestroyed() 공개 메소드

Returns whether the part has been destroyed.
public IsPartDestroyed ( ShipPart a_part ) : bool
a_part ShipPart The part to test
리턴 bool
        public bool IsPartDestroyed(ShipPart a_part)
        {
            return !a_part.partObject.activeSelf;
        }