mirror of https://github.com/axmolengine/axmol.git
modify post-new.py
This commit is contained in:
parent
919a780e2a
commit
784761828b
|
@ -28,7 +28,7 @@ def setAndroidOrientation(orientation):
|
||||||
except Exception:
|
except Exception:
|
||||||
print("parser %s file failure" % filePath)
|
print("parser %s file failure" % filePath)
|
||||||
|
|
||||||
def setConfigJson(name,viewWith,viewHeight):
|
def setConfigJson(name,viewWith,viewHeight,orientation):
|
||||||
dir_path = os.path.dirname(__file__)
|
dir_path = os.path.dirname(__file__)
|
||||||
filePath = os.path.join(dir_path,"res/config.json")
|
filePath = os.path.join(dir_path,"res/config.json")
|
||||||
try:
|
try:
|
||||||
|
@ -42,6 +42,10 @@ def setConfigJson(name,viewWith,viewHeight):
|
||||||
cfg_content["init_view"]["width"] = viewWith
|
cfg_content["init_view"]["width"] = viewWith
|
||||||
if viewHeight:
|
if viewHeight:
|
||||||
cfg_content["init_view"]["height"] = viewHeight
|
cfg_content["init_view"]["height"] = viewHeight
|
||||||
|
if orientation:
|
||||||
|
cfg_content["init_view"]["isLandscape"] = True
|
||||||
|
else:
|
||||||
|
cfg_content["init_view"]["isLandscape"] = False
|
||||||
else:
|
else:
|
||||||
initViewObject={}
|
initViewObject={}
|
||||||
if name:
|
if name:
|
||||||
|
@ -50,6 +54,11 @@ def setConfigJson(name,viewWith,viewHeight):
|
||||||
initViewObject["width"] = viewWith
|
initViewObject["width"] = viewWith
|
||||||
if viewHeight:
|
if viewHeight:
|
||||||
initViewObject["height"] = viewHeight
|
initViewObject["height"] = viewHeight
|
||||||
|
if orientation:
|
||||||
|
initViewObject["isLandscape"] = True
|
||||||
|
else:
|
||||||
|
initViewObject["isLandscape"] = False
|
||||||
|
|
||||||
cfg_content["init_view"] = initViewObject
|
cfg_content["init_view"] = initViewObject
|
||||||
f = open(filePath,"w")
|
f = open(filePath,"w")
|
||||||
json.dump(cfg_content,f,indent=4)
|
json.dump(cfg_content,f,indent=4)
|
||||||
|
|
Loading…
Reference in New Issue