制作大厅物体中
1 parent de2d57b commit df6978d1c602917b2ea238760283344d8675ca4b
@小李xl 小李xl authored on 26 Feb 2024
Showing 12 changed files
View
1
■■■■
DungeonShooting_Godot/addons/dungeonShooting_plugin/generator/ExcelGenerator.cs
{
//dotnet publish excelTool -c Release -r win-x64 -o ./excelTool/publish/win-x64
//dotnet publish excelTool -c Release -r osx-x64 -o excelTool/publish/osx-x64
//dotnet publish excelTool -c Release -r osx-x64 --self-contained true -p:PublishSingleFile=true -o excelTool/publish/osx-x64
GD.Print("编译命令: " + $"dotnet publish {csProjectPath} -c Release -r {rid} --self-contained true -p:PublishSingleFile=true -o {outputPath}");
var outLog = new Array();
var result = OS.Execute("dotnet", new string[]
{
"publish", csProjectPath,
View
DungeonShooting_Godot/excel/ActivityBase.xlsx
Not supported
View
14
DungeonShooting_Godot/excelTool/ExcelGenerator.cs
var fileInfos = directoryInfo.GetFiles();
//记录文件
foreach (var fileInfo in fileInfos)
{
var fileName = Path.GetFileNameWithoutExtension(fileInfo.Name).FirstToUpper();
_excelNames.Add(fileName);
}
if (fileInfo.Extension == ".xlsx")
{
var fileName = Path.GetFileNameWithoutExtension(fileInfo.Name).FirstToUpper();
_excelNames.Add(fileName);
}
}
 
//读取配置文件
foreach (var fileInfo in fileInfos)
{
if (fileInfo.Extension == ".xlsx")
View
DungeonShooting_Godot/excelTool/version
View
DungeonShooting_Godot/prefab/item/Item0031.tscn 0 → 100644
View
DungeonShooting_Godot/prefab/item/Item0057.tscn 0 → 100644
View
DungeonShooting_Godot/resource/config/ActivityBase.json
View
DungeonShooting_Godot/resource/sprite/item/hall/item _31.png
View
DungeonShooting_Godot/resource/sprite/item/hall/item _57.png
View
DungeonShooting_Godot/scene/Hall.tscn
View
DungeonShooting_Godot/src/framework/activity/ActivityInstance.cs
View
DungeonShooting_Godot/src/framework/activity/ActivityObject_Init.cs