method removeAttribute

bool removeAttribute(string attributeName);

Argumente

Zurückgegebener Wert

This method will attempt to remove an attribute from a box's attribute list. Only custom attributes can be removed.
var bx = scene.getBoxById("testBox");
if (bx)
{
    bx.removeAttribute("dataEvaluation");
}