window title can be set as parameter in project.xml

This commit is contained in:
Patrick Gutlich
2018-09-04 12:49:25 +02:00
committed by Joshua Granick
parent 563246630e
commit c2103d151f
2 changed files with 3 additions and 3 deletions

View File

@@ -134,7 +134,7 @@ class HXProject extends Script {
defaultMeta = { title: "MyApplication", description: "", packageName: "com.example.myapp", version: "1.0.0", company: "", companyUrl: "", buildNumber: null, companyId: "" }
defaultApp = { main: "Main", file: "MyApplication", path: "bin", preloader: "", swfVersion: 17, url: "", init: null }
defaultWindow = { width: 800, height: 600, parameters: "{}", background: 0xFFFFFF, fps: 30, hardware: true, display: 0, resizable: true, borderless: false, orientation: Orientation.AUTO, vsync: false, fullscreen: false, allowHighDPI: true, alwaysOnTop: false, antialiasing: 0, allowShaders: true, requireShaders: false, depthBuffer: true, stencilBuffer: true, colorDepth: 32, maximized: false, minimized: false, hidden: false }
defaultWindow = { width: 800, height: 600, parameters: "{}", background: 0xFFFFFF, fps: 30, hardware: true, display: 0, resizable: true, borderless: false, orientation: Orientation.AUTO, vsync: false, fullscreen: false, allowHighDPI: true, alwaysOnTop: false, antialiasing: 0, allowShaders: true, requireShaders: false, depthBuffer: true, stencilBuffer: true, colorDepth: 32, maximized: false, minimized: false, hidden: false, title:"" }
platformType = PlatformType.DESKTOP;
architectures = [];
@@ -1189,7 +1189,7 @@ class HXProject extends Script {
}
windows[i].title = meta.title;
if(windows[i].title=="") windows[i].title = meta.title;
}

View File

@@ -2212,7 +2212,7 @@ class ProjectXMLParser extends HXProject {
}
case "parameters":
case "parameters", "title":
if (Reflect.hasField (windows[id], name)) {