Gets and sets the name of the decal. This is the name seen in the browser and timeline.
# Get the value of the property.propertyValue = decal_var.name# Set the value of the property.decal_var.name = propertyValue
#include <Fusion/Image/Decal.h>// Get the value of the property.string propertyValue = decal_var->name();// Set the value of the property, where value_var is a string.bool returnValue = decal_var->name(value_var);