@rendley/sdk - v1.15.5
    Preparing search index...

    Interface PropertyRegistration

    Runtime registration contract connecting an animatable property key to get/set accessors on a clip.

    interface PropertyRegistration {
        get: () => PropertyValue;
        key: string;
        set: (value: PropertyValue) => void;
        type: PropertyDescriptionTypeEnum;
    }
    Index

    Properties

    Properties

    get: () => PropertyValue
    key: string
    set: (value: PropertyValue) => void