Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2014
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 1.54 KB | None | 0 0
  1. STRINGS = {
  2.     "_ASSET_NAME_" => "Mad Level Manager",
  3.     "_NAMESPACE_" => "MadLevelManager",
  4.     "_MENU_GROUP_" => "Tools/Mad Level Manager",
  5.     "_ROOT_NAME_" => "Mad Level Root",
  6.     "_VERSION_" => "2.1.3-Trial",
  7.  
  8.     "_TRIAL_PURCHASE_URL_" => "https://www.assetstore.unity3d.com/en/#!/content/10070",
  9.     "_TRIAL_DURATION_" => "1209600",
  10.     "_TRIAL_KEY_" => "sw-5=thequtup-th-*WUsabRuch2#uma",
  11. }
  12.  
  13. SCRIPTS = "Assets/Mad Level Manager/Scripts"
  14. EDITOR = "Assets/Mad Level Manager/Scripts/Editor"
  15.  
  16. BUNDLES = {
  17.     "MadLevelManager" => {
  18.         #:rootdir => "Assets",
  19.         :files => ["#{SCRIPTS}/*.cs", "#{SCRIPTS}/Base/*.cs", "#{SCRIPTS}/Base/Background/*.cs", "#{SCRIPTS}/Base/Layouts/*.cs", "#{SCRIPTS}/Mad2D/*.cs", "#{SCRIPTS}/MadCommons/*.cs"],
  20.         :output => "#{SCRIPTS}/MadLevelManager.dll",
  21.         :references => [:UnityEditor],
  22.         :defines => ["TRIAL", "UNITY_4_3", "UNITY_EDITOR"],
  23.         :guid => "a1e846b6117286d04be5ab5e9f04a6eb",
  24.         :update_references => true,
  25.         :remove_sources => true,
  26.     },
  27.  
  28.     "MadLevelManager_Editor" => {
  29.         #:rootdir => "Assets",
  30.         :output => "#{EDITOR}/MadMeshCombiner_Editor.dll",
  31.         :files => ["#{EDITOR}/**/*.cs", "#{SCRIPTS}/Mad2D/Editor/**/*.cs", "#{SCRIPTS}/MadCommons/Editor/**/*.cs"],
  32.         :references => [:UnityEditor, "MadLevelManager"],
  33.         :defines => ["TRIAL", "UNITY_4_3", "UNITY_EDITOR"],
  34.         :guid => "59f5d24ef239b41016b9414bfbd23297",
  35.         :update_references => true,
  36.         :remove_sources => true,
  37.     }
  38. }
  39.  
  40. RESOURCES = {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement