@miris-inc/core 0.0.8-c385de9 → 0.0.8-c42bedf
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.
- package/dist/AquaApi.wasm +0 -0
- package/dist/aqua-parser.wasm +0 -0
- package/dist/core.d.ts +8 -0
- package/dist/core.js +40 -2
- package/dist/core.prod.js +1 -1
- package/dist/core.standalone.js +250 -212
- package/dist/core.standalone.prod.js +1 -1
- package/package.json +8 -1
- package/webshark.d.ts +201 -0
package/dist/AquaApi.wasm
CHANGED
|
Binary file
|
package/dist/aqua-parser.wasm
CHANGED
|
Binary file
|
package/dist/core.d.ts
CHANGED
|
@@ -481,6 +481,13 @@ export declare class Miris {
|
|
|
481
481
|
*/
|
|
482
482
|
static readonly _XR_TARGET_FRAME_RATE = 43;
|
|
483
483
|
/* Excluded from this release type: _XR_SPLAT_COUNT_BUDGET */
|
|
484
|
+
/* Excluded from this release type: _SHARK_SPLAT_CAPACITY_MOBILE */
|
|
485
|
+
static readonly _SHARK_SPLAT_CAPACITY_DESKTOP = 3000000;
|
|
486
|
+
/* Excluded from this release type: _SHARK_SPLAT_BUDGET_CAP_MOBILE */
|
|
487
|
+
static readonly _SHARK_SPLAT_BUDGET_CAP_DESKTOP = 2500000;
|
|
488
|
+
/* Excluded from this release type: _isMobileDevice */
|
|
489
|
+
/* Excluded from this release type: _sharkSplatCapacity */
|
|
490
|
+
/* Excluded from this release type: _sharkSplatBudgetCap */
|
|
484
491
|
/* Excluded from this release type: _setTargetFrameRate */
|
|
485
492
|
/* Excluded from this release type: _setXRModeActive */
|
|
486
493
|
/* Excluded from this release type: _setSplatCountBudgetOverride */
|
|
@@ -524,6 +531,7 @@ declare interface RuntimeSettings extends EmbindObject {
|
|
|
524
531
|
targetFramesPerSecond: number;
|
|
525
532
|
xrModeActive: boolean;
|
|
526
533
|
splatCountBudget: number;
|
|
534
|
+
splatCountBudgetCap: number;
|
|
527
535
|
}
|
|
528
536
|
|
|
529
537
|
export declare class Scene extends EventTarget {
|