Bläddra i källkod

增加一个bat,将战斗dll copy到unity工程中

大爷 2 år sedan
förälder
incheckning
2f7f308c53
1 ändrade filer med 13 tillägg och 0 borttagningar
  1. 13 0
      CopyDllToUnity.bat

+ 13 - 0
CopyDllToUnity.bat

@@ -0,0 +1,13 @@
+@echo off
+copy /b /y Library\Debug\CommonAI.dll ..\StarEscort\Unity\Assets\Res\CodeDll\CommonAI.dll.bytes
+copy /b /y Library\Debug\CommonLang.dll ..\StarEscort\Unity\Assets\Res\CodeDll\CommonLang.dll.bytes
+copy /b /y Library\Debug\XmdsCommon.dll ..\StarEscort\Unity\Assets\Res\CodeDll\XmdsCommon.dll.bytes
+
+copy /b /y Library\Debug\CommonAI.dll ..\StarEscort\Unity\Assets\Plugins\BattlePlugin\CommonAI.dll
+copy /b /y Library\Debug\CommonLang.dll ..\StarEscort\Unity\Assets\Plugins\BattlePlugin\CommonLang.dll
+copy /b /y Library\Debug\XmdsCommon.dll ..\StarEscort\Unity\Assets\Plugins\BattlePlugin\XmdsCommon.dll
+copy /b /y Library\Debug\CommonAI.dll ..\StarEscort\Unity\Assets\Plugins\BattlePlugin\CommonAI.pdb
+copy /b /y Library\Debug\CommonLang.dll ..\StarEscort\Unity\Assets\Plugins\BattlePlugin\CommonLang.pdb
+copy /b /y Library\Debug\XmdsCommon.dll ..\StarEscort\Unity\Assets\Plugins\BattlePlugin\XmdsCommon.pdb
+echo copy successful
+@pause