You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
396 B
14 lines
396 B
using UnityEditor; |
|
using UnityEngine; |
|
|
|
namespace ET |
|
{ |
|
public class ETBuildSettings : ScriptableObject |
|
{ |
|
public bool clearFolder = false; |
|
public bool isBuildExe = false; |
|
public bool isContainAB = false; |
|
public BuildType buildType = BuildType.Release; |
|
public BuildAssetBundleOptions buildAssetBundleOptions = BuildAssetBundleOptions.None; |
|
} |
|
}
|
|
|