Cleanup: unused DNA

This commit is contained in:
Campbell Barton 2018-05-18 08:14:36 +02:00
parent f7e7769260
commit 8faa594413
3 changed files with 4 additions and 8 deletions

View File

@ -59,7 +59,6 @@ void BKE_lamp_init(Lamp *la)
BLI_assert(MEMCMP_STRUCT_OFS_IS_ZERO(la, id));
la->r = la->g = la->b = la->k = 1.0f;
la->haint = 1.0f;
la->energy = 10.0f;
la->dist = 25.0f;
la->spotsize = DEG2RADF(45.0f);

View File

@ -51,15 +51,12 @@ typedef struct Lamp {
short type, flag;
int mode;
short colormodel, totex;
float r, g, b, k;
float shdwr, shdwg, shdwb, shdwpad;
float energy, dist, spotsize, spotblend;
float haint;
float att1, att2; /* Quad1 and Quad2 attenuation */
float coeff_const, coeff_lin, coeff_quad, coeff_pad;
struct CurveMapping *curfalloff;

View File

@ -51,8 +51,8 @@ struct MTex;
typedef struct World {
ID id;
struct AnimData *adt; /* animation data (must be immediately after id for utilities to use it) */
short colormodel, totex;
char _pad0[4];
short texact, mistype;
float horr, horg, horb;