@viji-dev/core 0.3.35 → 0.3.36

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/index.d.ts CHANGED
@@ -846,6 +846,8 @@ declare interface ImageConfig {
846
846
 
847
847
  declare interface ImageParameter {
848
848
  value: ImageBitmap | null;
849
+ /** P5-compatible image wrapper. Only available in the P5 renderer — added at runtime by the P5 adapter. */
850
+ readonly p5?: any;
849
851
  label: string;
850
852
  description?: string;
851
853
  group: string;
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { A, V, a, b } from "./index-B6hW1Tit.js";
1
+ import { A, V, a, b } from "./index-D3clBOe3.js";
2
2
  export {
3
3
  A as AudioSystem,
4
4
  V as VERSION,
@@ -22,7 +22,7 @@ export const shaderUniforms = {
22
22
  "u_fps": {
23
23
  "type": "float",
24
24
  "category": "Core",
25
- "description": "Current frames per second"
25
+ "description": "Target frame rate (based on host frame-rate mode)"
26
26
  },
27
27
  "u_mouse": {
28
28
  "type": "vec2",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@viji-dev/core",
3
- "version": "0.3.35",
3
+ "version": "0.3.36",
4
4
  "description": "Universal execution engine for Viji Creative scenes",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",