Gets and sets if zoom and orbit commands use camera pivot point for transition.
# Get the value of the property.propertyValue = generalPreferences_var.isCameraPivotEnabled# Set the value of the property.generalPreferences_var.isCameraPivotEnabled = propertyValue
#include <Core/Application/GeneralPreferences.h>// Get the value of the property.boolean propertyValue = generalPreferences_var->isCameraPivotEnabled();// Set the value of the property, where value_var is a boolean.bool returnValue = generalPreferences_var->isCameraPivotEnabled(value_var);