@babylonjs/core 7.7.1 → 7.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -124,7 +124,10 @@ export class NativeEngine extends Engine {
124
124
  }
125
125
  constructor(options = {}) {
126
126
  super(null, false, undefined, options.adaptToDeviceRatio);
127
- this._engine = new _native.Engine();
127
+ this._engine = new _native.Engine({
128
+ version: Engine.Version,
129
+ nonFloatVertexBuffers: true,
130
+ });
128
131
  this._camera = _native.Camera ? new _native.Camera() : null;
129
132
  this._commandBufferEncoder = new CommandBufferEncoder(this._engine);
130
133
  this._boundBuffersVertexArray = null;