Lua向C#逻辑迁移 一期 #13

狐狸移动,技能迁移和完善
This commit is contained in:
2025-10-26 15:46:04 +08:00
parent dab9990b44
commit 8c0623b397
28 changed files with 605 additions and 323 deletions

View File

@ -0,0 +1,44 @@
{
"folders": [
{
"name": "BusyRabbit-CSharp",
"path": "./ManagedBusyRabbit"
},
{
"name": "ProjectGlue (Generated)",
"path": "./BusyRabbit.Glue"
}
],
"settings": {
"files.exclude": {
"**/bin": true,
"**/obj": true,
"**/.vs": true,
},
"search.exclude": {
"**/bin": true,
"**/obj": true
},
"dotnet.defaultSolution": "Script/${workspaceFolderBasename}.sln",
"omnisharp.enableRoslynAnalyzers": true,
"omnisharp.enableEditorConfigSupport": true,
"csharp.suppressDotnetRestoreNotification": false
},
"extensions": {
"recommendations": [
"ms-dotnettools.csharp",
"ms-dotnettools.csdevkit"
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Attach to Unreal Editor",
"type": "coreclr",
"request": "attach",
"processName": "UnrealEditor.exe"
}
]
}
}