Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add(Common,OtherCommand,GameContentModify,PluginLoader): 添加部分常用VBY插件 #628

Merged
merged 6 commits into from
Dec 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .config/submodule-manifests/VBY.Common.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"README.en-US": {
"Description": "Foundation library for VBY plugins"
},
"README.es-ES": {
"Description": "Biblioteca base para plugins VBY"
},
"README": {
"READMEUrl": "https://github.com/UnrealMultiple/MyPlugin/blob/master/docs/VBY.Common.md",
"Description": "VBY插件的基础库"
}
}
12 changes: 12 additions & 0 deletions .config/submodule-manifests/VBY.GameContentModify.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"README.en-US": {
"Description": "Customizable modifications for certain game content (super)"
},
"README.es-ES": {
"Description": "Modificaciones personalizables para cierto contenido del juego (super)"
},
"README": {
"READMEUrl": "https://github.com/UnrealMultiple/MyPlugin/blob/master/docs/VBY.GameContentModify.md",
"Description": "对一些游戏内容的可自定义修改 (超强)"
}
}
12 changes: 12 additions & 0 deletions .config/submodule-manifests/VBY.OtherCommand.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"README.en-US": {
"Description": "Provide some other auxiliary commands"
},
"README.es-ES": {
"Description": "Proveer algunos otros comandos auxiliares"
},
"README": {
"READMEUrl": "https://github.com/UnrealMultiple/MyPlugin/blob/master/docs/VBY.OtherCommand.md",
"Description": "提供一些其他的辅助命令"
}
}
12 changes: 12 additions & 0 deletions .config/submodule-manifests/VBY.PluginLoader.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"README.en-US": {
"Description": "A plugin loader that allows hot reloading"
},
"README.es-ES": {
"Description": "Un cargador de plugins que permite la recarga en caliente"
},
"README": {
"READMEUrl": "https://github.com/UnrealMultiple/MyPlugin/blob/master/docs/VBY.PluginLoader.md",
"Description": "一个允许热重载的插件加载器"
}
}
24 changes: 24 additions & 0 deletions .config/submodule_build.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,30 @@
"project_path": "src/Submodules/Crossplay/Crossplay/Crossplay.csproj",
"assembly_path": "src/Submodules/Crossplay/Crossplay/bin/{BuildType}/{TargetFramework}/Crossplay.dll",
"readme": "src/Submodules/Crossplay/README.md"
},
{
"name": "VBY.Common",
"project_path": "src/Submodules/VBY.Plugins/src/VBY/Common/Common.csproj",
"assembly_path": "src/Submodules/VBY.Plugins/out/{BuildType}/VBY.Common.dll",
"readme": "src/Submodules/VBY.Plugins/docs/VBY.Common.md"
},
{
"name": "VBY.GameContentModify",
"project_path": "src/Submodules/VBY.Plugins/src/VBY/GameContentModify/GameContentModify.csproj",
"assembly_path": "src/Submodules/VBY.Plugins/out/{BuildType}/VBY.GameContentModify.dll",
"readme": "src/Submodules/VBY.Plugins/docs/VBY.GameContentModify.md"
},
{
"name": "VBY.PluginLoader",
"project_path": "src/Submodules/VBY.Plugins/src/VBY/PluginLoader/PluginLoader.csproj",
"assembly_path": "src/Submodules/VBY.Plugins/out/{BuildType}/VBY.PluginLoader.dll",
"readme": "src/Submodules/VBY.Plugins/docs/VBY.PluginLoader.md"
},
{
"name": "VBY.OtherCommand",
"project_path": "src/Submodules/VBY.Plugins/src/VBY/OtherCommand/OtherCommand.csproj",
"assembly_path": "src/Submodules/VBY.Plugins/out/{BuildType}/VBY.OtherCommand.dll",
"readme": "src/Submodules/VBY.Plugins/docs/VBY.OtherCommand.md"
}
]
}
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@
[submodule "src/Submodules/TrProtocol"]
path = src/Submodules/TrProtocol
url = https://github.com/UnrealMultiple/TrProtocol.git
[submodule "src/Submodules/VBY.Plugins"]
path = src/Submodules/VBY.Plugins
url = https://github.com/UnrealMultiple/MyPlugin.git
1 change: 1 addition & 0 deletions src/Submodules/VBY.Plugins
Submodule VBY.Plugins added at dd29c9
Loading