C# 클래스 AssetPackager.Assets.AssetList

Represents set of assets for CombineScripts.
파일 보기 프로젝트 열기: kpumuk/assetpackager.net 1 사용 예제들

공개 메소드들

메소드 설명
AddForcedAssets ( ICollection assets ) : ICollection

Adds forced assets to the assets list, and then appends assets from groups, that are exists in assets collection.

AssetList ( string name, bool force, string listType ) : System

Initializes a new instance of the AssetList class.

FindAsset ( string relativePath ) : Asset

Gets an Asset object for specified relative path.

FindAsset ( string relativePath, string assetNames ) : Asset

Gets an Asset object for specified relative path whoose name is in the assetNames list.

FindAssets ( string assetNames ) : ICollection

Gets a collection of Asset objects using names list.

메소드 상세

AddForcedAssets() 공개 메소드

Adds forced assets to the assets list, and then appends assets from groups, that are exists in assets collection.
public AddForcedAssets ( ICollection assets ) : ICollection
assets ICollection Assets collection.
리턴 ICollection

AssetList() 공개 메소드

Initializes a new instance of the AssetList class.
public AssetList ( string name, bool force, string listType ) : System
name string Set name.
force bool When true all URLs will be forced to combine (see ).
listType string Short name of the asset list type (see ).
리턴 System

FindAsset() 공개 메소드

Gets an Asset object for specified relative path.
public FindAsset ( string relativePath ) : Asset
relativePath string Relative asset path to look for.
리턴 Asset

FindAsset() 공개 메소드

Gets an Asset object for specified relative path whoose name is in the assetNames list.
public FindAsset ( string relativePath, string assetNames ) : Asset
relativePath string Relative asset path to look for.
assetNames string A list of asset names to look where.
리턴 Asset

FindAssets() 공개 메소드

Gets a collection of Asset objects using names list.
public FindAssets ( string assetNames ) : ICollection
assetNames string A list of asset names.
리턴 ICollection