forked from kodecocodes/c-sharp-style-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKeywordReplace.cs
44 lines (32 loc) · 1.34 KB
/
KeywordReplace.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// /*-------------------------------------------
// ---------------------------------------------
// Creation Date: 28/11/2017
// Author: Ben MacKinnon
// Description:
// ---------------------------------------------
// -------------------------------------------*/
using UnityEngine;
using UnityEditor;
using System.Collections;
public class KeywordReplace : UnityEditor.AssetModificationProcessor {
public static void OnWillCreateAsset (string path)
{
path = path.Replace(".meta", "");
int index = path.LastIndexOf(".");
if (index < 0)
return;
string file = path.Substring(index);
if (file != ".cs" && file != ".js" && file != ".boo")
return;
index = Application.dataPath.LastIndexOf("Assets");
path = Application.dataPath.Substring(0, index) + path;
if (!System.IO.File.Exists(path))
return;
string fileContent = System.IO.File.ReadAllText(path);
fileContent = fileContent.Replace("#CREATIONDATE#", System.DateTime.Today.ToString("dd/MM/yy") + "");
fileContent = fileContent.Replace("#PROJECTNAME#", PlayerSettings.productName);
fileContent = fileContent.Replace("#DEVELOPER#", System.Environment.UserName);
System.IO.File.WriteAllText(path, fileContent);
AssetDatabase.Refresh();
}
}