C# 클래스 AGS.Types.BuildTargetsInfo

파일 보기 프로젝트 열기: adventuregamestudio/ags 1 사용 예제들

공개 메소드들

메소드 설명
FindBuildTargetByName ( string name ) : IBuildTarget

Locates a registered IBuildTarget by its name, (e.g, "Windows").

GetAvailableBuildTargetNames ( ) : string[]

Returns a list of the names of all available build targets.

GetAvailableBuildTargets ( ) : IList

Returns a list of the registered build targets which are currently available for building.

GetRegisteredBuildTargetNames ( ) : string[]
GetRegisteredBuildTargetNames ( bool onlyNormalTargets ) : string[]

Returns a list of the names of all registered build targets.

GetRegisteredBuildTargets ( ) : IList
GetRegisteredBuildTargets ( bool onlyNormalTargets ) : IList

Returns a read-only list of the IBuildTargets that are currently registered, regardless of whether they are selected or available for building.

GetSelectedBuildTargets ( ) : IList

Returns a list of the IBuildTargets that are currently available and selected for building.

RegisterBuildTarget ( IBuildTarget target ) : void

Includes an IBuildTarget in the list of potential target build platforms.

비공개 메소드들

메소드 설명
BuildTargetsInfo ( ) : System

메소드 상세

FindBuildTargetByName() 공개 정적인 메소드

Locates a registered IBuildTarget by its name, (e.g, "Windows").
public static FindBuildTargetByName ( string name ) : IBuildTarget
name string
리턴 IBuildTarget

GetAvailableBuildTargetNames() 공개 정적인 메소드

Returns a list of the names of all available build targets.
public static GetAvailableBuildTargetNames ( ) : string[]
리턴 string[]

GetAvailableBuildTargets() 공개 정적인 메소드

Returns a list of the registered build targets which are currently available for building.
public static GetAvailableBuildTargets ( ) : IList
리턴 IList

GetRegisteredBuildTargetNames() 공개 정적인 메소드

public static GetRegisteredBuildTargetNames ( ) : string[]
리턴 string[]

GetRegisteredBuildTargetNames() 공개 정적인 메소드

Returns a list of the names of all registered build targets.
public static GetRegisteredBuildTargetNames ( bool onlyNormalTargets ) : string[]
onlyNormalTargets bool
리턴 string[]

GetRegisteredBuildTargets() 공개 정적인 메소드

public static GetRegisteredBuildTargets ( ) : IList
리턴 IList

GetRegisteredBuildTargets() 공개 정적인 메소드

Returns a read-only list of the IBuildTargets that are currently registered, regardless of whether they are selected or available for building.
public static GetRegisteredBuildTargets ( bool onlyNormalTargets ) : IList
onlyNormalTargets bool
리턴 IList

GetSelectedBuildTargets() 공개 정적인 메소드

Returns a list of the IBuildTargets that are currently available and selected for building.
public static GetSelectedBuildTargets ( ) : IList
리턴 IList

RegisterBuildTarget() 공개 정적인 메소드

Includes an IBuildTarget in the list of potential target build platforms.
public static RegisterBuildTarget ( IBuildTarget target ) : void
target IBuildTarget
리턴 void