up dependencies versions

This commit is contained in:
2018-10-12 15:49:06 +03:00
parent d6cf708035
commit 45af6c2a50
3 changed files with 11 additions and 9 deletions

View File

@@ -11,9 +11,9 @@ class Const {
public static var DEBUG:Bool;
public static function init():Void {
FPS = Lib.current.stage.application.config.fps;
FPS = Std.parseInt(Lib.current.stage.application.meta.get("fps"));
BUILD = CompilationOption.get("build");
VERSION = Lib.current.stage.application.config.version;
VERSION = Lib.current.stage.application.meta.get("version");
DEBUG = Capabilities.isDebugger;
}
}