1111
This commit is contained in:
@@ -222,7 +222,8 @@ namespace Stary.Evo.Editor
|
|||||||
#endif
|
#endif
|
||||||
AssetDatabase.SaveAssets();
|
AssetDatabase.SaveAssets();
|
||||||
|
|
||||||
|
domainClassName = domainClassName.Replace('.', '_');
|
||||||
|
architectureClassName = architectureClassName.Replace('.', '_');
|
||||||
string domainClassPath = $"{scriptsPath}/{domainClassName}.cs";
|
string domainClassPath = $"{scriptsPath}/{domainClassName}.cs";
|
||||||
//await File.WriteAllTextAsync($"{scriptsPath}/{domainClassName}.cs", domainTemplate);
|
//await File.WriteAllTextAsync($"{scriptsPath}/{domainClassName}.cs", domainTemplate);
|
||||||
await using (var writer = new StreamWriter(domainClassPath))
|
await using (var writer = new StreamWriter(domainClassPath))
|
||||||
|
|||||||
@@ -0,0 +1,64 @@
|
|||||||
|
using UnityEngine;
|
||||||
|
|
||||||
|
namespace Stary.Evo
|
||||||
|
{
|
||||||
|
public class AnimClipData
|
||||||
|
{
|
||||||
|
public string AnimName;
|
||||||
|
public AnimationClip AnimClip;
|
||||||
|
public AnimMode AnimMode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum AnimMode
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 入场1
|
||||||
|
/// </summary>
|
||||||
|
Entrance1,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 入场2
|
||||||
|
/// </summary>
|
||||||
|
Entrance2,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 退出1
|
||||||
|
/// </summary>
|
||||||
|
Exit1,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 退出2
|
||||||
|
/// </summary>
|
||||||
|
Exit2,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 空闲
|
||||||
|
/// </summary>
|
||||||
|
Idle,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 飞行
|
||||||
|
/// </summary>
|
||||||
|
Flying,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 引导
|
||||||
|
/// </summary>
|
||||||
|
Guide,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 反馈
|
||||||
|
/// </summary>
|
||||||
|
Feedback,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 对话空闲
|
||||||
|
/// </summary>
|
||||||
|
TalkIdle,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 对话
|
||||||
|
/// </summary>
|
||||||
|
Talking,
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 46ff0818b37d41c4beea00d1081610f7
|
||||||
|
timeCreated: 1767948662
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "com.staryevo.tools",
|
"name": "com.staryevo.tools",
|
||||||
"version": "1.3.6",
|
"version": "1.3.7",
|
||||||
"displayName": "00.StaryEvo.Tools",
|
"displayName": "00.StaryEvo.Tools",
|
||||||
"description": "This is an Framework package(后台服务器版本,端口9527)",
|
"description": "This is an Framework package(后台服务器版本,端口9527)",
|
||||||
"unity": "2021.3",
|
"unity": "2021.3",
|
||||||
|
|||||||
Reference in New Issue
Block a user