@@ -283,6 +283,14 @@
configurable: true
});
+ Object.defineProperty(Engine, "Version", {
+ get: function () {
+ return "1.13.0";
+ },
+ enumerable: true,
+ configurable: true
+ });
+
Engine.prototype.getAspectRatio = function (camera) {
var viewport = camera.viewport;
return (this.getRenderWidth() * viewport.width) / (this.getRenderHeight() * viewport.height);
@@ -164,6 +164,10 @@
return Engine._DELAYLOADSTATE_NOTLOADED;
}
+ public static get Version(): string {
+ }
// Updatable statics so stick with vars here
public static Epsilon = 0.001;
public static CollisionsEpsilon = 0.001;