Skip to content

Commit

Permalink
feat(assets_bundler, build_target): add Unity 2017.3 build targets / …
Browse files Browse the repository at this point in the history
…build options
  • Loading branch information
toverux committed Jan 13, 2018
1 parent 9c05fc5 commit cfc5e13
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions src/assets_bundler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ export interface IBuildOptionsMap {
strictMode?: boolean;
/** Do a dry run build. */
dryRunBuild?: boolean;
/** Disables Asset Bundle LoadAsset by file name. */
disableLoadAssetByFileName?: boolean;
/** Disables Asset Bundle LoadAsset by file name with extension. */
disableLoadAssetByFileNameWithExtension?: boolean;
}

export class AssetsBundler {
Expand Down
10 changes: 6 additions & 4 deletions src/build_targets.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
export const StandaloneOSXUniversal = 'StandaloneOSXUniversal';
export const StandaloneOSXIntel = 'StandaloneOSXIntel';
export const StandaloneOSX = 'StandaloneOSXUniversal';
export const StandaloneOSXUniversal = 'StandaloneOSXUniversal'; // @UnityVersion remove when 5.x support is dropped
export const StandaloneOSXIntel = 'StandaloneOSXIntel'; // @UnityVersion remove when 5.x support is dropped
export const StandaloneWindows = 'StandaloneWindows';
export const iOS = 'iOS';
export const Android = 'Android';
export const StandaloneLinux = 'StandaloneLinux';
export const StandaloneWindows64 = 'StandaloneWindows64';
export const WebGL = 'WebGL';
export const WSAPlayer = 'WSAPlayer';
export const StandaloneLinux64 = 'StandaloneLinux64';
export const StandaloneLinuxUniversal = 'StandaloneLinuxUniversal';
export const StandaloneOSXIntel64 = 'StandaloneOSXIntel64';
export const StandaloneOSXIntel64 = 'StandaloneOSXIntel64'; // @UnityVersion remove when 5.x support is dropped
export const Tizen = 'Tizen';
export const PSP2 = 'PSP2';
export const PS4 = 'PS4';
export const XboxOne = 'XboxOne';
export const SamsungTV = 'SamsungTV';
export const SamsungTV = 'SamsungTV'; // @UnityVersion remove when 5.x support is dropped
export const N3DS = 'N3DS';
export const WiiU = 'WiiU';
export const tvOS = 'tvOS';
Expand Down

0 comments on commit cfc5e13

Please sign in to comment.