Skip to content

Deformer

Deformer#

(Deformer)

No corresponding User page.

Description#

A deformer is an operator applied to geometries made of vertices. It operates on vertices and can be used to load an animation file (point cache) or to apply displacement maps.

Public Attributes#

Type Name Visual Hint Description
double weight VISUAL_HINT_PERCENTAGE Set the weight of the deformer. A value of 50% will apply the deformer with half strength.
bool local_deformation VISUAL_HINT_DEFAULT If enabled, the deformation isn't affected by the global position of the item.

CID#

class "Deformer" "ProjectItem" {
    abstract yes
    embedded_only yes
    #version 0.9
    icon "../icons/object_icons/deformer.iconrc"
    doc "A deformer is an operator applied to geometries made of vertices. It operates on vertices and can be used to load an animation file (point cache) or to apply displacement maps."
    percentage "weight" {
        doc "Set the weight of the deformer. A value of 50% will apply the deformer with half strength."
        animatable yes
        ui_range yes 0.0 1
        value 1
    }
    bool "local_deformation" {
        doc "If enabled, the deformation isn\'t affected by the global position of the item."
        value yes
    }
    double[16] "parent_matrix" {
        private yes
        saveable no
        value 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
    }
}