Fixed: Initialize members in LWSLoader

pull/596/head
Richard 2015-06-30 23:42:40 -06:00
parent 32a460f667
commit db4232cb4a
1 changed files with 4 additions and 1 deletions

View File

@ -85,7 +85,9 @@ public:
struct NodeDesc struct NodeDesc
{ {
NodeDesc() NodeDesc()
: number (0) : type()
, id()
, number (0)
, parent (0) , parent (0)
, name ("") , name ("")
, isPivotSet (false) , isPivotSet (false)
@ -94,6 +96,7 @@ struct NodeDesc
, lightType (0) , lightType (0)
, lightFalloffType (0) , lightFalloffType (0)
, lightConeAngle (45.f) , lightConeAngle (45.f)
, lightEdgeAngle()
, parent_resolved (NULL) , parent_resolved (NULL)
{} {}