Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_global.h
| Show First 20 Lines • Show All 64 Lines • ▼ Show 20 Lines | typedef struct Global { | ||||
| /** | /** | ||||
| * Debug value, can be set from the UI and python, used for testing nonstandard features. | * Debug value, can be set from the UI and python, used for testing nonstandard features. | ||||
| * DO NOT abuse it with generic checks like `if (G.debug_value > 0)`. Do not use it as bitflags. | * DO NOT abuse it with generic checks like `if (G.debug_value > 0)`. Do not use it as bitflags. | ||||
| * Only precise specific values should be checked for, to avoid unpredictable side-effects. | * Only precise specific values should be checked for, to avoid unpredictable side-effects. | ||||
| * Please document here the value(s) you are using (or a range of values reserved to some area). | * Please document here the value(s) you are using (or a range of values reserved to some area). | ||||
| * * -16384 and below: Reserved for python (add-ons) usage. | * * -16384 and below: Reserved for python (add-ons) usage. | ||||
| * * -1: Disable faster motion paths computation (since 08/2018). | * * -1: Disable faster motion paths computation (since 08/2018). | ||||
| * * 1 - 30: EEVEE debug/stats values (01/2018). | * * 1 - 30: EEVEE debug/stats values (01/2018). | ||||
| * * 31: Enable the Select ID debug Map (08/2019). | |||||
| * * 101: Enable UI debug drawing of fullscreen area's corner widget (10/2014). | * * 101: Enable UI debug drawing of fullscreen area's corner widget (10/2014). | ||||
| * * 527: Old mysterious switch in behavior of MeshDeform modifier (before 04/2010). | * * 527: Old mysterious switch in behavior of MeshDeform modifier (before 04/2010). | ||||
| * * 666: Use quicker batch delete for outliners' delete hierarchy (01/2019). | * * 666: Use quicker batch delete for outliners' delete hierarchy (01/2019). | ||||
| * * 777: Enable UI node panel's sockets polling (11/2011). | * * 777: Enable UI node panel's sockets polling (11/2011). | ||||
| * * 799: Enable some mysterious new depsgraph behavior (05/2015). | * * 799: Enable some mysterious new depsgraph behavior (05/2015). | ||||
| * * 1112: Disable new Cloth internal springs handling (09/2014). | * * 1112: Disable new Cloth internal springs handling (09/2014). | ||||
| * * 1234: Disable new dyntopo code fixing skinny faces generation (04/2015). | * * 1234: Disable new dyntopo code fixing skinny faces generation (04/2015). | ||||
| * * 16384 and above: Reserved for python (add-ons) usage. | * * 16384 and above: Reserved for python (add-ons) usage. | ||||
| ▲ Show 20 Lines • Show All 143 Lines • Show Last 20 Lines | |||||