stereoframe-runtime 0.1.0 → 0.2.1
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/stereoframe.js +190 -190
- package/dist/vocab.d.ts +2 -2
- package/dist/vocab.js +3 -1
- package/package.json +2 -2
package/dist/vocab.d.ts
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* Keep in sync with: scene.ts tag handling, animate.ts verb dispatch.
|
|
7
7
|
*/
|
|
8
8
|
export { EASE_NAMES } from "./ease";
|
|
9
|
-
export declare const ELEMENT_NAMES: readonly ["sf-scene", "sf-camera", "sf-model", "sf-mesh", "sf-light", "sf-particles", "sf-sky", "sf-ocean", "sf-swarm", "sf-animate"];
|
|
10
|
-
export declare const VERB_NAMES: readonly ["turntable", "orbit", "dolly", "move", "follow", "crossfade-clip", "camera-path", "bounce-in", "fade-in", "float"];
|
|
9
|
+
export declare const ELEMENT_NAMES: readonly ["sf-scene", "sf-camera", "sf-model", "sf-mesh", "sf-light", "sf-particles", "sf-sky", "sf-ocean", "sf-swarm", "sf-metaball", "sf-animate"];
|
|
10
|
+
export declare const VERB_NAMES: readonly ["turntable", "orbit", "dolly", "move", "follow", "crossfade-clip", "camera-path", "bounce-in", "fade-in", "float", "variant"];
|
|
11
11
|
/** sf-* attributes whose value is a local asset path the renderer fetches. */
|
|
12
12
|
export declare const ASSET_ATTRS: readonly ["src", "environment", "normals"];
|
package/dist/vocab.js
CHANGED
|
@@ -73,6 +73,7 @@ var ELEMENT_NAMES = [
|
|
|
73
73
|
"sf-sky",
|
|
74
74
|
"sf-ocean",
|
|
75
75
|
"sf-swarm",
|
|
76
|
+
"sf-metaball",
|
|
76
77
|
"sf-animate"
|
|
77
78
|
];
|
|
78
79
|
var VERB_NAMES = [
|
|
@@ -85,7 +86,8 @@ var VERB_NAMES = [
|
|
|
85
86
|
"camera-path",
|
|
86
87
|
"bounce-in",
|
|
87
88
|
"fade-in",
|
|
88
|
-
"float"
|
|
89
|
+
"float",
|
|
90
|
+
"variant"
|
|
89
91
|
];
|
|
90
92
|
var ASSET_ATTRS = ["src", "environment", "normals"];
|
|
91
93
|
export {
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stereoframe-runtime",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Declarative, deterministic 3D scene runtime for stereoframe — three.js driven by seek time.",
|
|
5
|
-
"license": "
|
|
5
|
+
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/kiyeonjeon21/stereoframe",
|