{ "do_default": [ { "action": "rep", "from": "HelloLua", "to": "${projectName}", "files": [ "config.json", "HelloLua.xsxproj", "proj.win32/main.cpp", "proj.android/settings.gradle", "proj.android/app/res/values/strings.xml", "proj.ios_mac/ios/main.m", "proj.ios_mac/ios/Prefix.pch", "CMakeLists.txt", "proj.android/app/AndroidManifest.xml" ] }, { "action": "cp", "from": "$env:AX_ROOT/extensions/scripting/lua-bindings/script", "to": "${projectDir}/Content/src/axmol", "is_dir": true }, { "action": "cp", "from": "$env:AX_ROOT/extensions/scripting/lua-bindings/manual/lua_module_register.h", "to": "${projectDir}/Source/" }, { "action": "rep", "from": "org.axmol.hellolua", "to": "${packageName}", "files": [ "proj.android/app/build.gradle", "CMakeLists.txt" ] }, { "action": "ren", "from": "${projectDir}/HelloLua.xsxproj", "to": "${projectDir}/${projectName}.xsxproj" }, { "action": "cp", "from": "$env:AX_ROOT/templates/build.bat", "to": "${projectDir}/" }, { "action": "cp", "from": "$env:AX_ROOT/templates/run.bat.in", "to": "${projectDir}/" }, { "action": "del", "files": [ "axproj-template.json" ] } ], "do_portrait": [ { "action": "rep", "pattern": "\\\"isLandscape\\\"\\s*:.*,", "to": "`\"isLandscape`\": false,", "files": [ "config.json" ] }, { "action": "rep", "pattern": "width\\s*=.*,", "to": "width = 640,", "files": [ "Content/src/config.lua" ] }, { "action": "rep", "pattern": "height\\s*=.*,", "to": "height = 960,", "files": [ "Content/src/config.lua" ] }, { "action": "rep", "from": "UIInterfaceOrientationLandscapeRight", "to": "UIInterfaceOrientationPortrait", "files": [ "proj.ios_mac/ios/targets/ios/Info.plist" ] }, { "action": "rep", "from": "UIInterfaceOrientationLandscapeLeft", "to": "UIInterfaceOrientationPortraitUpsideDown", "files": [ "proj.ios_mac/ios/targets/ios/Info.plist" ] }, { "action": "rep", "pattern": "android:screenOrientation=\\\".*\\\"", "to": "android:screenOrientation=`\"portrait`\"", "files": [ "proj.android/app/AndroidManifest.xml" ] }, { "action": "rep", "pattern": "orientation=\\\".*\\\"", "to": "orientation=`\"portrait`\"", "files": [ "proj.ios_mac/ios/targets/ios/LaunchScreen.storyboard" ] }, { "action": "rep", "pattern": "image name=\\\".*\\\" width=\\\".*\\\" height=\\\".*\\\"", "to": "image name=`\"LaunchScreenBackground.png`\" width=`\"1242`\" height=`\"2208`\"", "files": [ "proj.ios_mac/ios/targets/ios/LaunchScreen.storyboard" ] }, { "action": "cp", "from": "${projectDir}/proj.ios_mac/ios/targets/ios/LaunchScreenBackgroundPortrait.png", "to": "${projectDir}/proj.ios_mac/ios/targets/ios/LaunchScreenBackground.png" }, { "action": "del", "files": [ "proj.ios_mac/ios/targets/ios/LaunchScreenBackgroundPortrait.png" ] } ] }