improve ui
add track properties editor
This commit is contained in:
10
app/src/primitives/AnimatedProperty.ts
Normal file
10
app/src/primitives/AnimatedProperty.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import { z } from "zod";
|
||||
import { AnimatedValue } from "./Values";
|
||||
|
||||
export const AnimatedProperty = z.object({
|
||||
propertyPath: z.string(),
|
||||
animatedValue: AnimatedValue,
|
||||
label: z.string(),
|
||||
});
|
||||
|
||||
export const AnimatedProperties = z.array(AnimatedProperty);
|
||||
Reference in New Issue
Block a user