diff --git a/compile/godot-compile.md b/blog/7.1.godot-compile.md similarity index 92% rename from compile/godot-compile.md rename to blog/7.1.godot-compile.md index 05cc29f..1631472 100644 --- a/compile/godot-compile.md +++ b/blog/7.1.godot-compile.md @@ -38,9 +38,9 @@ pip config set global.proxy http://127.0.0.1:10809 - 官网下载Visual Studio 2019,然后选择C++编译工具安装就行 - 如果不想安装VS,那么使用C++编译工具MinGW依然可以 -![Image text](image/vs01.JPG) -![Image text](image/vs02.JPG) -![Image text](image/vs03.JPG) +![Image text](image/compile/vs01.JPG) +![Image text](image/compile/vs02.JPG) +![Image text](image/compile/vs03.JPG) # MinGW-w64 @@ -75,7 +75,7 @@ target=debug ``` - scons -j15 platform=windows target=debug tools=no - ![Image text](image/vs05.JPG) + ![Image text](image/compile/vs05.JPG) ``` tools编辑器选项,godot里,所有带有tools的,是带编辑器的,不带tools是模板 @@ -86,21 +86,21 @@ tools可以在debug、release或者release_debug三种都可以,默认release 完成后就可以通过export导出项目或者将新增加的内容打包为pck作为dlc使用了 ``` -![Image text](image/vs09.JPG) +![Image text](image/compile/vs09.JPG) - scons -j15 platform=windows target=release tools=no - ![Image text](image/vs06.JPG) + ![Image text](image/compile/vs06.JPG) ``` opt是optimized production template的缩写,是优化过后的模板,这个打包更加的耗时 ``` - scons -j15 platform=windows target=debug tools=yes ,等价于scons -j15 platform=windows - ![Image text](image/vs07.JPG) + ![Image text](image/compile/vs07.JPG) - scons -j15 platform=windows target=release tools=yes - ![Image text](image/vs08.JPG) + ![Image text](image/compile/vs08.JPG) - 其它编译参数 @@ -133,7 +133,7 @@ scons -j15 platform=android use_mingw=yes target=release android_arch=arm64v8 - 再使用Visual Studio双击打开sln解决方案 - 设置调试参数 - ![Image text](image/vs12.JPG) + ![Image text](image/compile/vs12.JPG) # 使用Clion调试Godot的源代码 diff --git a/compile/godot-compile-clion.md b/blog/7.2.godot-compile-clion.md similarity index 98% rename from compile/godot-compile-clion.md rename to blog/7.2.godot-compile-clion.md index cb749a4..e0149d7 100644 --- a/compile/godot-compile-clion.md +++ b/blog/7.2.godot-compile-clion.md @@ -96,7 +96,7 @@ scons -j15 platform=android use_mingw=yes target=release android_arch=arm64v8 - 再使用Visual Studio双击打开sln解决方案 - 设置调试参数 - ![Image text](image/vs12.JPG) + ![Image text](image/compile/vs12.JPG) # 使用Clion调试Godot的源代码 diff --git a/compile/image/vs01.JPG b/blog/image/compile/vs01.JPG similarity index 100% rename from compile/image/vs01.JPG rename to blog/image/compile/vs01.JPG diff --git a/compile/image/vs01.JPG.import b/blog/image/compile/vs01.JPG.import similarity index 100% rename from compile/image/vs01.JPG.import rename to blog/image/compile/vs01.JPG.import diff --git a/compile/image/vs02.JPG b/blog/image/compile/vs02.JPG similarity index 100% rename from compile/image/vs02.JPG rename to blog/image/compile/vs02.JPG diff --git a/compile/image/vs02.JPG.import b/blog/image/compile/vs02.JPG.import similarity index 100% rename from compile/image/vs02.JPG.import rename to blog/image/compile/vs02.JPG.import diff --git a/compile/image/vs03.JPG b/blog/image/compile/vs03.JPG similarity index 100% rename from compile/image/vs03.JPG rename to blog/image/compile/vs03.JPG diff --git a/compile/image/vs03.JPG.import b/blog/image/compile/vs03.JPG.import similarity index 100% rename from compile/image/vs03.JPG.import rename to blog/image/compile/vs03.JPG.import diff --git a/compile/image/vs05.JPG b/blog/image/compile/vs05.JPG similarity index 100% rename from compile/image/vs05.JPG rename to blog/image/compile/vs05.JPG diff --git a/compile/image/vs05.JPG.import b/blog/image/compile/vs05.JPG.import similarity index 100% rename from compile/image/vs05.JPG.import rename to blog/image/compile/vs05.JPG.import diff --git a/compile/image/vs06.JPG b/blog/image/compile/vs06.JPG similarity index 100% rename from compile/image/vs06.JPG rename to blog/image/compile/vs06.JPG diff --git a/compile/image/vs06.JPG.import b/blog/image/compile/vs06.JPG.import similarity index 100% rename from compile/image/vs06.JPG.import rename to blog/image/compile/vs06.JPG.import diff --git a/compile/image/vs07.JPG b/blog/image/compile/vs07.JPG similarity index 100% rename from compile/image/vs07.JPG rename to blog/image/compile/vs07.JPG diff --git a/compile/image/vs07.JPG.import b/blog/image/compile/vs07.JPG.import similarity index 100% rename from compile/image/vs07.JPG.import rename to blog/image/compile/vs07.JPG.import diff --git a/compile/image/vs08.JPG b/blog/image/compile/vs08.JPG similarity index 100% rename from compile/image/vs08.JPG rename to blog/image/compile/vs08.JPG diff --git a/compile/image/vs08.JPG.import b/blog/image/compile/vs08.JPG.import similarity index 100% rename from compile/image/vs08.JPG.import rename to blog/image/compile/vs08.JPG.import diff --git a/compile/image/vs09.JPG b/blog/image/compile/vs09.JPG similarity index 100% rename from compile/image/vs09.JPG rename to blog/image/compile/vs09.JPG diff --git a/compile/image/vs09.JPG.import b/blog/image/compile/vs09.JPG.import similarity index 100% rename from compile/image/vs09.JPG.import rename to blog/image/compile/vs09.JPG.import diff --git a/compile/image/vs12.JPG b/blog/image/compile/vs12.JPG similarity index 100% rename from compile/image/vs12.JPG rename to blog/image/compile/vs12.JPG diff --git a/compile/image/vs12.JPG.import b/blog/image/compile/vs12.JPG.import similarity index 100% rename from compile/image/vs12.JPG.import rename to blog/image/compile/vs12.JPG.import