Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <mail@jlucke.com>2019-02-06 14:05:34 +0300
committerJacques Lucke <mail@jlucke.com>2019-02-06 14:05:34 +0300
commit45478158479d3aa695de9dfafc2fe433d1ae0f51 (patch)
tree0be810545b6b18d0aa73480c465d72647258cd61 /source/blender/makesdna/DNA_armature_types.h
parent6202bc82b858d8f6876c6c20ec62dd0a16209087 (diff)
Cleanup: Remove deprecated ghosting code
Most of this code is deprecated for many years already and does not work at all in Blender 2.8. Reviewers: brecht, aligorith Differential Revision: https://developer.blender.org/D4271
Diffstat (limited to 'source/blender/makesdna/DNA_armature_types.h')
-rw-r--r--source/blender/makesdna/DNA_armature_types.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/source/blender/makesdna/DNA_armature_types.h b/source/blender/makesdna/DNA_armature_types.h
index 86955f07d60..a800dd2ac78 100644
--- a/source/blender/makesdna/DNA_armature_types.h
+++ b/source/blender/makesdna/DNA_armature_types.h
@@ -129,19 +129,6 @@ typedef struct bArmature {
unsigned int layer_used;
/** For buttons to work, both variables in this order together. */
unsigned int layer, layer_protected;
-
-// XXX deprecated... old animation system (armature only viz) ---
- /** Number of frames to ghosts to show, and step between them . */
- short ghostep, ghostsize;
- /** Ghost drawing options and number of frames between points of path. */
- short ghosttype, pathsize;
- /** Start and end frames of ghost-drawing range. */
- int ghostsf, ghostef;
- /** Start and end frames of path-calculation range for all bones. */
- int pathsf, pathef;
- /** Number of frames before/after current frame of path-calculation for all bones . */
- int pathbc, pathac;
-// XXX end of deprecated code ----------------------------------
} bArmature;
/* armature->flag */
@@ -208,14 +195,6 @@ typedef enum eArmature_PathFlag {
} eArmature_PathFlag;
#endif
-/* armature->ghosttype */
-// XXX deprecated... old animation system (armature only viz)
-typedef enum eArmature_GhostType {
- ARM_GHOST_CUR = 0,
- ARM_GHOST_RANGE = 1,
- ARM_GHOST_KEYS = 2,
-} eArmature_GhostType;
-
/* bone->flag */
typedef enum eBone_Flag {
BONE_SELECTED = (1 << 0),