Skip to content

ToolSelect

ToolSelect#

(Select)

  • Category: Select
  • Default object name: select
  • Inherits from: Tool

Go to User page.

Description#

Select scene objects inside an Image View or a 3D View.

Public Attributes#

Type Name Visual Hint Description
double opacity_threshold VISUAL_HINT_PERCENTAGE Set the threshold value under which the object is considered transparent therefore not selectable.
long pick_mode VISUAL_HINT_DEFAULT In Auto mode, the nearest item in Z is picked. In Manual mode, the user is prompted with the list of picked items.

CID#

class "ToolSelect" "Tool" {
    #version 0.9
    icon "../icons/object_icons/tool_select.iconrc"
    category "Select"
    doc "Select scene objects inside an Image View or a 3D View."
    ui_weight 90
    attribute_group "picking" {
        percentage "opacity_threshold" {
            doc "Set the threshold value under which the object is considered transparent therefore not selectable."
            slider yes
            ui_range yes 0.0 1
            value 0.5
        }
        long "pick_mode" {
            doc "In Auto mode, the nearest item in Z is picked. In Manual mode, the user is prompted with the list of picked items."
            preset "Auto" "0"
            preset "Manual" "1"
            value 0
        }
    }
}