1. Home
  2. Docs
  3. 3D Viewer
  4. Guides
  5. Hooks

Hooks

Table of Contents

Filter Hook

Disable Hand tool

add_filter( 'bp3d_model_attribute', function ($defaults){
    return wp_parse_args( [
        'interaction-prompt' => 'none'
    ], $defaults );
}, 10, 2 );

How can we help?