property ornament

(r/w) bool ornament;

Typ

Zugriff

This property sets and gets the ornament flag. When the ornament property is set to true the box will ignore all mouse events.
var bx = scene.getBoxById("testBox");
if(bx)
{
    bx.ornament = true;
}