exodeui 2.6.20 → 2.6.23
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/engine.d.ts +4 -2
- package/dist/index.js +4 -4
- package/dist/index.mjs +1922 -1872
- package/dist/physics/RapierPhysics.d.ts +1 -1
- package/dist/types.d.ts +2 -1
- package/dist/useExodeUI.d.ts +2 -0
- package/package.json +1 -1
|
@@ -12,7 +12,7 @@ export declare class RapierPhysics implements PhysicsEngine {
|
|
|
12
12
|
destroy(): void;
|
|
13
13
|
createBody(options: BodyOptions): void;
|
|
14
14
|
removeBody(id: string): void;
|
|
15
|
-
step(
|
|
15
|
+
step(_dt: number): void;
|
|
16
16
|
getPosition(id: string): {
|
|
17
17
|
x: number;
|
|
18
18
|
y: number;
|
package/dist/types.d.ts
CHANGED
|
@@ -219,7 +219,7 @@ export interface Constraint {
|
|
|
219
219
|
mass?: number;
|
|
220
220
|
}
|
|
221
221
|
export interface ShapeObject {
|
|
222
|
-
type: 'Shape' | 'Group' | 'Component' | 'Frame' | 'Button' | 'Bone';
|
|
222
|
+
type: 'Shape' | 'Group' | 'Component' | 'Frame' | 'Button' | 'Bone' | 'Toggle' | 'Slider' | 'Dropdown' | 'ListView';
|
|
223
223
|
id: string;
|
|
224
224
|
name: string;
|
|
225
225
|
transform: Transform;
|
|
@@ -238,6 +238,7 @@ export interface ShapeObject {
|
|
|
238
238
|
blendMode?: string;
|
|
239
239
|
compositeOperation?: string;
|
|
240
240
|
options?: any;
|
|
241
|
+
inputId?: string;
|
|
241
242
|
}
|
|
242
243
|
export interface Keyframe {
|
|
243
244
|
time: number;
|
package/dist/useExodeUI.d.ts
CHANGED
|
@@ -8,5 +8,7 @@ export declare function useExodeUI(): {
|
|
|
8
8
|
fireTrigger: (name: string) => void;
|
|
9
9
|
setInputText: (name: string, value: string) => void;
|
|
10
10
|
setInputNumberArray: (name: string, value: number[]) => void;
|
|
11
|
+
setInputStringArray: (name: string, value: string[]) => void;
|
|
11
12
|
updateConstraint: (objectId: string, index: number, properties: any) => void;
|
|
13
|
+
updateObjectOptions: (objectId: string, options: any) => void;
|
|
12
14
|
};
|